将“购物选项”功能从侧边栏移动到magento中的类别页面

时间:2014-02-19 07:27:06

标签: magento magento-1.7

我的问题是我在magento中使用主题并使用模板的1-column布局。

我想在我的类别页面中显示“shopping options”功能作为过滤器选项。

目前,我在右侧边栏的2-cloumn版面中有购物选项。

1 个答案:

答案 0 :(得分:1)

Uttam,你可以在breadcrumb之后在类别顶部进行图层导航。请检查我的代码。请为你的模板应用程序转到catalog.xml>设计>前端> Mypakacage>我的模板>布局>

 <catalog_category_default translate="label">
        <label>Catalog Category (Non-Anchor)</label>
        <reference name="content">
        <block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
            <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">

        ...

对于锚类别

  <catalog_category_layered translate="label">
            <label>Catalog Category (Anchor)</label>
            <reference name="content">
             <block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
                <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
......
相关问题