Page 105 of 199 FirstFirst ... 55595103104105106107115155 ... LastLast
Results 1,041 to 1,050 of 1988
  1. #1041
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by Doodlebuckets View Post
    Yep, that's next on my list. I have tried to get the page to display as I want it to, but I don't know how to get what I need, so if you could teach me how that would be great!

    http://www.ncwheatmontanacoop.com/or...ain_page=links

    For the above page (and all others eventually), I would like where it says "Recipes" in bold, just above "Our Members' tried and true recipes!", I want it to say the category title...in this case, "Yeast Breads".

    Next, I need for the titles to be non-clickable, larger font, and in bold. Also, the line at the top of the page, if that could show up between each Recipe to separate them, that would be great.

    I have gone around and around with this, but this is a part of code that I don't yet understand. I know this is not a Links Manager application, but I sure appreciate your help! Maybe when it's all done, you could upload it as another contrib...

    Not a problem.

    Lets do the easy part first (Also, the line at the top of the page, if that could show up between each Recipe to separate them, that would be great.)

    open includes/templates/YOUR_TEMPLATE/css/links.css

    find the following declarations:

    Code:
    .productListing-even .linkListing-data{padding:5px;font-size:1em;;background:ivory;color:#000;}
    .productListing-odd .linkListing-data{padding:5px;font-size:1em;color:#000;}
    Replace them with:

    Code:
    .productListing-even .linkListing-data{padding:5px;font-size:1em;;background:ivory;color:#000;border-top:1px solid #000;}
    .productListing-odd .linkListing-data{padding:5px;font-size:1em;color:#000;border-top:1px solid #000;}
    Save the file and upload to your server

    Now the next one (I would like where it says "Recipes" in bold, just above "Our Members' tried and true recipes!", I want it to say the category title...in this case, "Yeast Breads".)

    open includes/modules/pages/links/header_php.php

    find the following section of code lines 27 - 32
    Code:
      if ($display_mode == 'links') {
      $breadcrumb->add(NAVBAR_TITLE, zen_href_link(FILENAME_LINKS, '', 'NONSSL'));
      $breadcrumb->add($link_categories_query->fields['link_categories_name']);
      } else {
      $breadcrumb->add(NAVBAR_TITLE);
      }
    replace this section with the following:

    Code:
      if ($display_mode == 'links') {
      $breadcrumb->add(NAVBAR_TITLE, zen_href_link(FILENAME_LINKS, '', 'NONSSL'));
      $breadcrumb->add($link_categories_query->fields['link_categories_name']);
      $subtitle = '<h2>' . $link_categories_query->fields['link_categories_name'] . '</h2>';
      } else {
      $breadcrumb->add(NAVBAR_TITLE);
      }
    save the file and upload to your server

    Now open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

    find at around line 105:

    <?php echo HEADING_TITLE; ?>

    immediately below this line add the following:

    <?php echo $subtitle; ?>

    Save the file and upload to your server

    Now the last one (I need for the titles to be non-clickable, larger font, and in bold.)

    open includes/templates/YOUR_TEMPLATE/css/links.css

    add the following declaration:

    h4.linkTitle {
    font-size: 1.1em;
    font-weight:bold;
    }

    Save the file and upload to your server

    Now open includes/modules/YOUR_TEMPLATE/link_listing.php

    find the following line of code at around line 76

    Code:
     $lc_text = '<a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . $listing_query->fields['links_title'] . '</a><br />' . $listing_query->fields['links_description']; }
    replace this with the following:

    Code:
    $lc_text = '<h4 class="linkTitle">' . $listing_query->fields['links_title'] . '</h4><br />' . $listing_query->fields['links_description']; }
    Save the file and upload to your server.

    I think this will give you the look you wanted (or at least close to it.)

  2. #1042

    Default Re: Link Manager 3.0 release

    http://www.ncwheatmontanacoop.com/or...ain_page=links

    Something broke, but I dunno what. Thanks for all the help!

  3. #1043

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by Doodlebuckets View Post
    http://www.ncwheatmontanacoop.com/or...ain_page=links

    Something broke, but I dunno what. Thanks for all the help!
    Nevermind! I replaced the wrong line of code in link_listing.php! I appreciate everything!!!

  4. #1044
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by Doodlebuckets View Post
    Nevermind! I replaced the wrong line of code in link_listing.php! I appreciate everything!!!
    Glad to help!

  5. #1045

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Glad to help!
    Sigh, there's one more thing: Status:
    Catchable fatal error: Object of class queryFactoryResult could not be converted to string in C:\Sites\Single18\kennybranch\webroot\order\admin\includes\functions\html_output .php on line 333

    I reuploaded my admin folder but still get this error. Did I do something that caused this when I changed some of the defines?

  6. #1046

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by Doodlebuckets View Post
    Sigh, there's one more thing: Status:
    Catchable fatal error: Object of class queryFactoryResult could not be converted to string in C:\Sites\Single18\kennybranch\webroot\order\admin\includes\functions\html_output .php on line 333

    I reuploaded my admin folder but still get this error. Did I do something that caused this when I changed some of the defines?
    The code in line 333 is

    if (empty($default) && isset($GLOBALS[$name])) $default = stripslashes($GLOBALS[$name]);
    if that helps...

  7. #1047
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by Doodlebuckets View Post
    The code in line 333 is

    if that helps...
    in what part of admin is this error showing up?

  8. #1048

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    in what part of admin is this error showing up?
    Sorry! on the admin links (new link add) page ie
    http://www.ncwheatmontanacoop.com/or...e=1&action=new

  9. #1049
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by Doodlebuckets View Post
    Sorry! on the admin links (new link add) page ie
    http://www.ncwheatmontanacoop.com/or...e=1&action=new
    I can't really tell without knowing what you changed in the file.

    Can you zip up the file and post it here so I can take a look.

  10. #1050
    Join Date
    Nov 2006
    Location
    Sapin
    Posts
    44
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Hello:

    Recently i upgrade the link manager but i have a problem.

    I have a shop whit two languages English and Spanish and a see only the box links in the english language no in the spanish, i think copy all files in the two diferent languages and i comprobate then and i think all is right.

    Any Ideas? Your help will be very aprecited.

    http://www.expomueble.es

    Thank you very much

 

 

Similar Threads

  1. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  2. v154 News Box Manager v2.0.0 [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 84
    Last Post: 19 Jan 2021, 04:17 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR