我一直在努力解决这个问题几个小时 - 我为产品制作了两个页面模板,一个名为vxs-view.phtml,另一个名为view.phtml。位于同一目录。
我尝试的解决方案是输入
<reference name="product.info">
<action method="setTemplate"> <template>catalog/product/view/vxs-view.phtml</template></action>
</reference>
然而,这只适用于该产品属于某一类别的情况。有没有办法可以将付费布局添加到设计选项卡中的模板文件中?
我一直在将此代码添加到前端系统/自定义设计/自定义布局更新框
对不起,我需要magento并且还在学习。
感谢您的帮助
答案 0 :(得分:1)
您输入了错误的引用类型。请尝试以下代码。
<module_page_action> <!- Enter your modulename_pagename_action e.g. catalog_product_info-->
<reference name="root">
<action method="setTemplate"> <template>catalog/product/view/vxs-view.phtml</template></action>
</reference>
<module_page_action>
希望这对你有用!
干杯!