Magento – Approved review not showing on product view page on frontend in Magento 2

magento2product-review

Blank div showing with no content

<div id="product-review-container" data-role="product-review"></div>

But the review form working fine.
What is the issue? Any solution for this?

Best Answer

Another option Add the below code in Add this div in /Magento_Catalog/templates/product/view/details.phtml

<div id="product-review-container" data-role="product-review">
    <?php echo $this->getLayout()
        ->createBlock("Magento\Review\Block\Product\View\ListView")
        ->setTemplate("Magento_Review::product/view/list.phtml")
        ->toHtml();
    ?>
</div>
Related Topic