我希望产品评论页面使用不同的模板,而不是:
目录/产品/view.phtml
在review.xml中,我看到文件被调用:
<block type="review/product_view" name="product.info" template="catalog/product/view.phtml">
有没有办法可以在 local.xml 中覆盖它并创建一个新文件(例如:view2.phtml)并将其用于此页面?
我希望产品评论页面使用不同的模板,而不是:
目录/产品/view.phtml
在review.xml中,我看到文件被调用:
<block type="review/product_view" name="product.info" template="catalog/product/view.phtml">
有没有办法可以在 local.xml 中覆盖它并创建一个新文件(例如:view2.phtml)并将其用于此页面?
<review_product_list>
<reference name="product.info">
<action method="setTemplate"><template>catalog/product/view2.phtml</template></action>
</reference>
</review_product_list>
是的,您绝对可以通过在以下代码中编写以下代码来做到这一点local.xml
:-
<reference name="product.info">
<action method="setTemplate"><template>catalog/product/view2.phtml</template></action>
</reference>
这view2.phtml
是正确文件夹结构中的新文件。
希望能帮助到你。