Magento – Review Form is not showing on the product page

formsmagento-1.9productreview

I have added the following configuration code to the config.xml to show the review section on product view but it just showing the heading of the review section and not the actual form there.

 <block type="review/product_view_list" name="product.reviews" as="reviews" template="review/product/view/list.phtml" after="additional">
   <action method="addToParentGroup"><group>detailed_info</group></action>
   <action method="setTitle" translate="value"><value>Reviews</value></action>
 </block>

What else i need to do to make it work in perfect way,

Best Answer

Please check review/product/view/list.phtml file.

And add below code before close div in last line(almost 67 or 68).

echo $this->getLayout()->createBlock('review/form')->setTemplate('review/form.phtml')->toHtml()

If here, review form in calling already like this:

echo $this->getChildHtml('review_form')

Please comment this code.

enter image description here

Related Topic