Hello, I would like to have the reviews count removed from the product listing in the category page.
Is there a setting for it or do I have to change the code somewhere?
Thanks in advance
PS: Sorry, the image is in Greek but I am sure you can understand what I want to get rid of
2 answers
Hi crift,
Pls goto file: \app\design\frontend\default\jm_easyshoptemplate\ catalog\product\list.phtml , depend on the view mode you’re using: Grid / List mode. For example, by default, we use Grid mode, you goto line 94:
PHP Code:
<?php if($_product->getRatingSummary()){ ?>
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
<?php } ?>
Remove this line:
PHP Code:
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
Hope this helps.
Thank you Saguaros!
That worked.
This question is now closed