Magento 2 – Move Product-Review Summary Below Add to Cart Button

catalogmagento2product-review

I want to move product-review-summary in products listing page above the price which is at the bottom of product-information. that is after add to cart button . How should I do this?
enter image description here
enter image description here

what is the name of the xml file I should edit.? and what is the block and destination names to give in move command?

Best Answer

Override vendor\magento\module-catalog\view\frontend\templates\product\list.phtml in your theme and move this text

<?php echo $block->getReviewsSummaryHtml($_product, $templateType); ?>

after your product actions product-item-actions div.

Related Topic