Category Counts with CSS Flyout Menu
I am running Zencart V1.5 and installed CSS Flyout Menu. I wanted to be able to show category counts. I ran across this thread http://www.zen-cart.com/showthread.p...614#post287614. by DrByte. I added it to /includes/classes/categories_ul_generator.php. It works perfectly. It shows the category counts at the Main Category and all sub categories as well. I was hoping that I could exclude the category counts from the main category and only show it on the subcategories menus. This is a link to my site to show what I am talking about http://www.usaofficesupplies.com/oemsupplies.
Any help would be appreciated..
Thanks in advance
Re: Category Counts with CSS Flyout Menu
To remove the display of counts from ALL top-level categories, change the following (taken from the post quoted above):
Code:
$result .= CATEGORIES_COUNT_PREFIX . $catcount . CATEGORIES_COUNT_SUFFIX;
to
Code:
if ($level > 0) $result .= CATEGORIES_COUNT_PREFIX . $catcount . CATEGORIES_COUNT_SUFFIX;
Re: Category Counts with CSS Flyout Menu
DrByte you are the best. I like this look better for my site.. Thank you so very much for your time.
Re: Category Counts with CSS Flyout Menu
Glad I was able to help. :)