AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: SUPERMAN on September 27, 2016, 08:03:54 AM

Title: I wish to see (number of products) in each category!
Post by: SUPERMAN on September 27, 2016, 08:03:54 AM
Hi,
How can i show the number of Products at the Category View!
Example!   If i have a Category for CARPETS  and there two Items, I want to see   CATEGORIES (2)   but if there are NO ITEMS than i want to show  CATEGORIES (0).
Can you help?     Thanks
Title: Re: I wish to see (number of products) in each category!
Post by: abantecart on September 27, 2016, 10:02:49 AM
You can do this with simple edit in the template for categories.

If you use top category, edit this file:
storefront/view/default/template/blocks/category_top.tpl

In the code, everywhere you see <?php echo $category['name']; ?> change it to

<?php echo $category['name'] . "(".$category['product_count'].")"?>


Similar for <?php echo $scat['name']; ?>
Title: Re: I wish to see (number of products) in each category!
Post by: SUPERMAN on September 28, 2016, 02:56:28 AM
Thank You!   That worked for the Drop Down Menu!
What can i change to show the (number of products) beside the Category Title which shows beneath the Category Image on the page?
Best Regards.