Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2009
    Posts
    36
    Plugin Contributions
    0

    Default How to make Specials Category display at top of list?

    Hi, just wondering how to move the 'Specials' category to the top of the list? It does not show up in the categories list in Zen Cart admin, so I can't set a sort order for it.

    At the moment it is displaying at the bottom of the list.

    Thanks in advance ....

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: How to make Specials Category display at top of list?

    The link for Specials is added to the end of the Categories sidebox template in the tpl_categories.php ...

    You would need to use your templates and overrides and find the code:
    Code:
        if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
          $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
          if ($show_this->RecordCount() > 0) {
            $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a>' . '<br />' . "\n";
          }
        }
    Comment out the line with the $content and add that whole peice of code:
    Code:
        if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
          $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
          if ($show_this->RecordCount() > 0) {
            $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a>' . '<br />' . "\n";
          }
        }
    before the start of the FOR loop that is in the file ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Oct 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: How to make Specials Category display at top of list?

    Thanks Linda, you are awesome!!!!

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: How to make Specials Category display at top of list?

    You are most welcome ... thanks for the update that you were able to change the location of the Specials Link in the Categories sidebox by rearranging things ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. Replies: 4
    Last Post: 1 Jul 2015, 06:51 PM
  2. v151 How to make clicking a category display all its items under the category name??
    By tlyczko in forum Templates, Stylesheets, Page Layout
    Replies: 44
    Last Post: 27 Mar 2014, 06:17 PM
  3. Replies: 2
    Last Post: 4 Jun 2011, 01:40 PM
  4. Specials, Featured, etc at Top Of Category List
    By scytheuk in forum Templates, Stylesheets, Page Layout
    Replies: 18
    Last Post: 6 Apr 2010, 06:29 PM
  5. How do I make new prod display same as List?
    By ikoiko in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 18 Feb 2007, 12:11 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