Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mwin007/56b412b504de12aa17c1 to your computer and use it in GitHub Desktop.
Save mwin007/56b412b504de12aa17c1 to your computer and use it in GitHub Desktop.
If you are looking to add magento reviews form to your product details form page, here is the step by step instructions for that.
Second, open: catalog.xml, in your “layout” directory. Find this section:
?
1
2
<reference name=”content”>
<block type=”catalog/product_view” name=”product.info” template=”catalog/product/view.phtml”>
Add the following:
?
1
2
3
4
<block type=”review/form” name=”product.review.form” as=”review_form”/>
<block type=”review/product_view_list” name=”product.info.product_additional_data” as=”product_additional_data_review” template=”review/product/view/reviews-in-tab.phtml”>
<block type=”review/form” name=”product.review.form” as=”review_form”/>
</block>
Finally, open you template file where you would like to display the reviews and form. You will need to create a new tab, then use this:
?
1
2
<?php echo $this->getChildHtml(‘product_additional_data_review’) ?>
<?php echo $this->getChildHtml(‘review_form’) ?>
Magento Reviews
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment