Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / All Products in Category Tabs

All Products in Category Tabs

Locked

Views: 868

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
28 Sep 2007, 4:48 AM
#1
13_rings avatar

13_rings

New Zenner

Join Date:
Oct 2006
Posts:
3
Plugin Contributions:
0

All Products in Category Tabs

I've searched high and low, and maybe I just haven't been wording it right, but how do you set up an option to have an "All" category show up in the category tabs? In other words, I have four seperate categories, and they show up in the categories tabs menu, but I want to add a fifth, "ALL Products" category to the list.

I'm NOT using any sideboxes right now.

Thanks!

28 Sep 2007, 6:35 AM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: All Products in Category Tabs

You could try adding this to the bottom of the /includes/modules/categories_tabs.php file, just before the closing ?>

  $links_list[] = '<a class="' . $new_style . '" href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' . CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a> ';

You should probably save the file into your /includes/modules/YOURTEMPLATE overrides folder

29 Sep 2007, 10:47 PM
#3
13_rings avatar

13_rings

New Zenner

Join Date:
Oct 2006
Posts:
3
Plugin Contributions:
0

Re: All Products in Category Tabs

Thank you! That did it! :D