我正在使用RWD主题运行Magento 1.9.1.0。将页面布局设置为2 columns with left bar
时,我可以正确地看到左侧边栏中的过滤器(按价格等排序)。如何在1 column
页面布局中使用此工作(仅适用于类别)?我想在我的产品顶部创建一个全宽版本,使用类似Catalin SEO目录分层导航(用于幻灯片价格栏等)。
答案 0 :(得分:1)
1column.phtml模板没有左侧块,这是通常注入图层视图块的位置。在local.xml中执行此操作的一种方法是将块放在内容中(或after_body_start或before_body_end,或任何core / text_list子块):
<catalog_category_default>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml">
<block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers" />
</block>
</reference>
</catalog_category_default>
在你的CSS中,你可以隐藏图层块html,如果你不希望它显示但仍然希望它加载:
.category-mycategory .block-layered-nav {
display: none;
}
mycategory是您的类别名称。