我想在magento中显示一个特定产品的所有评论

时间:2014-10-21 05:01:06

标签: magento-1.9.1

我想在magento中显示某个特定产品的所有评论。例如,对于每个产品,它必须仅显示该特定产品的评论。

1 个答案:

答案 0 :(得分:0)

如果您想在产品页面上显示评论,可以使用以下代码:

步骤1.您必须通过导航到app / design / frontend / YourPackage / YourTheme / layout / catalog.xml来编辑您可以找到的catalog.xml文件

步骤2.在catalog_product_view

下添加此块
<block type="review/product_view_list" name="product.info.product_additional_data" as="product_review" template="review/product/view/list.phtml">
</block>

步骤3.现在将此特定块调用到view.phtml页面,您可以通过导航到app / design / frontend / YourPackage / YourTheme / template / catalog / product / view.phtml

来找到它。

步骤4.在此页面上添加要显示评论的代码块

<?php echo $this->getChildHtml('product_review') ?>

希望它有所帮助。

由于