我試圖讓產品評論和形式顯示產品視圖頁面上(view.phtml) 我已經看了一些論壇帖子,並試圖:Magento的 - 產品評論沒有出現在view.phtml
查找在catalog.xml中
<catalog_product_view translate="label">
而且要查找的內容:
<reference name="content">
在這裏我輸入的代碼:
<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>
在view.phtml我已經加入
<?php echo $this->getChildHtml('product_additional_data') ?>
<?php echo $this->getChildHtml('reviews') ?>
我得到一個空在哪裏,這是想顯示的評論信息。 我有標籤工作,我想要做的只是在該標籤中顯示評論表單和評論。
任何幫助,非常感謝。
您是否在編輯佈局文件後清除了xml緩存? – 2013-02-15 09:08:32
嗨,是的,我做了更改後清除了所有緩存。 – 2133215543 2013-02-15 09:14:24