类别层次结构
Root Catalog
|___ Books
我想更新一个特定类别而不影响其他类别。所以我将以下代码放入Admin-> Catalog-> Manage Categories->选择Book-> Custom Design-> Custom Layout Update(Magento v1.7)
<reference name="category">
<action method="setTemplate"><template>catalog/category/bookview.phtml</template></action>
</reference>
但是,单击顶部菜单上的Book后,页面仍然使用view.phtml(默认值为1)。我希望使用bookview.phtml。有没有人可以帮助我。谢谢!
答案 0 :(得分:2)
我猜你使用了错误的引用。如果您想要更新类别页面包装模板,请尝试使用<reference name="category.products">
;如果您想要更新产品列表,请尝试使用<reference name="product_list">
。