- Posts: 3
- Thank you received: 0
Product Count
-
taddytak
Inactive member - Topic Author
- New Member
Less
More
11 years 3 months ago #32775
by taddytak
Product Count was created by taddytak
How do i display product count on the Product Category module on home page? for example displaying following:
Cosmetics(5)
Diet(3)
Special(2)
Where number in products is count of products found in category Cosmetics/DIet etc
Cosmetics(5)
Diet(3)
Special(2)
Where number in products is count of products found in category Cosmetics/DIet etc
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 3 months ago - 11 years 3 months ago #32784
by ivan.milic
Replied by ivan.milic on topic Product Count
You mean product categories page.
You need to edit
templates\hot_drug_store\html\com_virtuemart\categories\default.php
line 72:
<a href="<?php echo $caturl ?>" title="<?php echo $category->category_name ?>">
<?php echo $category->category_name ?>
this change should work:
<a href="<?php echo $caturl ?>" title="<?php echo $category->category_name ?>">
<?php echo $category->category_name ?>
(<?php echo count($category->products); ?>)
btw. I'am not sure count($category->products) will give count but this is right place to put that. Check on google correct code if that does not work.
You need to edit
templates\hot_drug_store\html\com_virtuemart\categories\default.php
line 72:
<a href="<?php echo $caturl ?>" title="<?php echo $category->category_name ?>">
<?php echo $category->category_name ?>
this change should work:
<a href="<?php echo $caturl ?>" title="<?php echo $category->category_name ?>">
<?php echo $category->category_name ?>
(<?php echo count($category->products); ?>)
btw. I'am not sure count($category->products) will give count but this is right place to put that. Check on google correct code if that does not work.
Last edit: 11 years 3 months ago by ivan.milic.
Please Log in to join the conversation.
Time to create page: 0.150 seconds