Magento – Show Product Review List Below Review form on product page in magento2

magento2product-review

I want to show the Customer Reviews list below the review form
Does anyone know a solution?
enter image description here

Best Answer

You need to copy the below file in your custom theme:

vendor/magento/module-review/view/frontend/templates/review.phtml and change calling the child HTML function position:

from

<div id="product-review-container" data-role="product-review"></div>
<?php echo $block->getChildHtml(); ?>

to

<?php echo $block->getChildHtml(); ?>
<div id="product-review-container" data-role="product-review"></div>
Related Topic