I'm trying to get the product reviews and form showing on the product view page (view.phtml) I've looked at some forum posts and tried:
Finding in catalog.xml
<catalog_product_view translate="label">
And looking for the content:
<reference name="content">
In here I have entered the code:
<block type="review/product_view_list" name="product.info.product_additional_data" as="reviews" template="review/product/view/list.phtml"/>
<block type="review/product_view_list" name="product.info.product_additional_data" as="product_additional_data" template="review/product/view/list.phtml">
<block type="review/form" name="product.review.form" as="review_form">
<block type="page/html_wrapper" name="product.review.form.fields.before" as="form_fields_before" translate="label">
<label>Review Form Fields Before</label>
<action method="setMayBeInvisible"><value>1</value></action>
</block>
</block>
</block>
In view.phtml I have added
<?php echo $this->getChildHtml('product_additional_data') ?>
<?php echo $this->getChildHtml('reviews') ?>
I get an empty are where this is suppose to show the review information. I have tabs working what I want to do it just show the review form and reviews in that tab.
Any help is greatly appreciated.