Remove Rating Box from Category Page in Magento

productratings

I have try to remove rating box in frontend category listing but i have no idea. Someone can help ?

enter image description here

Best Answer

Open file app\design\frontend\YOUR_PACKAGE\YOUR_THEME\template\catalog\product\list.phtml and remove strings that echo Reviews information, for example:

<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>

or

<?php echo $this->getReviewsSummaryHtml($_product) ?>
Related Topic