我在 Magento (EE 1.9) 中有一些类别,我想使用不同的product/list.phtml
模板。
因此,在管理类别下,我选择目标类别并应用以下自定义布局更新:
<reference name="product_list">
<action method="setTemplate"><template>catalog/category/list_custom.phtml</template></action>
</reference>
我重新索引,缓存被禁用,但没有任何反应。product_list 模板不会更改。
如果我更新它确实会改变layout/catalog.xml
,其中包含以下内容:
<catalog_category_default translate="label">
<reference name="content">
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
但很明显,编辑catalog.xml 会更改所有类别的模板,而我只想更改一些。
请问我做错了什么?