Question

Can anyone help me how to include custom phtml file before reviews section in magento2

please find the screenshot below:

enter image description here

When i click on the button it is going to add to cart.

Thanks

Was it helpful?

Solution

add below code In catalog_product_view.xml in your theme

<?xml version="1.0"?>                                             
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
   <referenceContainer name="content">
        <block class="Magento\Framework\View\Element\Template" name="customblock" template="Magento_Theme::html/custom.phtml" before="product.info.review"/>
    </referenceContainer>
</body>
</page>
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top