如何在Magento中为一个类别制作自定义模板?

时间:2014-08-14 19:13:18

标签: php xml magento templates themes

我想创建一个新主题,仅替换 list.phtml 文件,保留其他文件,例如 view.phtml ,并在我的某个类别中调用它。 我在 app / design / frontend / default / newtheme / template / catalog / category / list.phtml 上创建了模板文件,它将替换当前的list.phtml文件。

我是否必须在 app / design / frontend / default / newtheme / layout / 上创建一个xml文件?它应该如何?

如何指定我想在我的类别中使用哪个模板文件?

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码添加列表phtml :

<reference name="product_list"> 
    <action method="setTemplate"><template>yourfilelocation/yourfile.phtml</template></action>
</reference>
<catalog_category_layered>

<catalog_category_default>
<reference name="product_list"> 
    <action method="setTemplate"><template>yourfilelocation/yourfile.phtml</template></action>
</reference>
<catalog_category_default>