|
I’m on magento 1.7.0.2 Has anyone else noticed that adding the reviews to the product page also results in the html title being changed to the Reviews title? In my local.xml file, I have:
<catalog_product_view> <reference name="product.info"> <block type="page/html_pager" name="product_review_list.toolbar" /> <block type="core/template" name="product_review_list.count" template="review/product/view/count.phtml" /> <block type="review/product_view_list" name="product.info.product_additional_data" as="product_reviews" template="review/product/view/list.phtml"> <block type="review/form" name="product.review.form" as="review_form"/> </block> </reference> </catalog_product_view>
At the end of the catalog product view.phtml file, I have:
<?php echo $this->getChildHtml('product_reviews') ?>
This is causing the HTML title of my product pages to be “Product Name Reviews”. Is anyone else seeing this and any idea how to revert this?
EDIT:
Turns out, I had added something to make the title on the reviews page end in Reviews, and it was also being applied on product page.
|