我有这个类别的自定义类别 view.phtml: http ://www.touchfix.nl/onderdelen
子类别使用其父级的 XML 更新,即:
<reference name="catalog_category_default">
<reference name="content">
<remove name="category.products" />
<block type="catalog/category_view" name="alphabase.parts" template="catalog/category/view.parts.phtml">
<block type="catalog/product_list" name="product_list" template="catalog/product/list.parts.phtml"></block>
</block>
</reference>
</reference>
<reference name="right">
<remove name="cms_waaromkiezen" />
<block type="cms/block" name="block_speerpunten_onderdelen">
<action method="setBlockId"><block_id>block_speerpunten_onderdelen</block_id></action>
</block>
</reference>
<reference name="head">
<action method="addCss"><stylesheet>css/categoryblocks.css</stylesheet></action>
</reference>
我想实现对“正确”的更改也适用于这些类别的产品。但是,当我在类别设置中也将这些更改应用于产品时,“内容”引用会搞砸我的页面,并返回一个空白页面。
如何引用 catalog_category 视图,以便“内容”更新仅在类别视图而不是产品视图中完成?