Question

I would like to disable rating and reviews link from category listing page. There is no option in admin system configuration. I couldn't find referenceBlock in catalog_category_view.xml.

enter image description here

Was it helpful?

Solution

In Magento 2.2.0, you have to remove this line from list.phtml file

<?= $block->getReviewsSummaryHtml($_product, $templateType) ?>

OTHER TIPS

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) ?>

Copied from: https://magento.stackexchange.com/a/135570/55042

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top