Author Topic: I wish to see (number of products) in each category!  (Read 3086 times)

Offline SUPERMAN

  • Newbie
  • *
  • Posts: 13
  • Karma: +1/-0
    • View Profile
I wish to see (number of products) in each category!
« 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

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: I wish to see (number of products) in each category!
« Reply #1 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
Code: [Select]
<?php echo $category['name']; ?> change it to
Code: [Select]
<?php echo $category['name'] . "(".$category['product_count'].")"?>

Similar for
Code: [Select]
<?php echo $scat['name']; ?>
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline SUPERMAN

  • Newbie
  • *
  • Posts: 13
  • Karma: +1/-0
    • View Profile
Re: I wish to see (number of products) in each category!
« Reply #2 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.

 

Powered by SMFPacks Social Login Mod