在magento的侧边栏中显示主要类别的子类别

时间:2015-05-21 12:30:43

标签: php magento categories

我有一些categoriessubcategories如下:

Mobile
    Nokia
    Samsung
    Micromax
Television
    LG
    Panasonic
    Philips
Laptop
    Acer
    Dell

当我点击category 移动时,right side bar全部categories and subcategories are displayed。但我需要显示移动<的subcategories < / strong>仅限。那只是诺基亚,三星,Micromax

我该如何管理?哪个文件处理这个操作?我也找不到所需的文件。

请帮帮我... magento版本是1.9.0.1

修改

display settings类别中,我将Is anchor设置为,然后在right side bar all categories are displayed中。如果我设置 the subcategories only displayed in left side barI need right side bar because it contain some filter options too

3 个答案:

答案 0 :(得分:0)

您可以使用以下扩展程序,它是免费的。

http://www.manadev.com/advanced-layered-navigation-ce

您可以从他们的网站查看演示。

答案 1 :(得分:0)

在类别设置中,将“移动”类别设置为锚类别。这将锁定客户的移动设备购物体验。

答案 2 :(得分:0)

问题解决了......

我在这里使用的是layered navigation

要显示layered navigation我所做的是:在Catalog > Manage Categories > (Category name) > Display settingsIs Anchor更改为

然后,

类别分层导航布局部分的app\design\frontend[template][template]\layout\catalog.xml中,

我改变了

<block type="catalog/navigation" name="catalog.leftnav1" before="currency" template="catalog/navigation/left_nav.phtml"/>

<block type="catalog/navigation" name="catalog.leftnav1" before="currency" template="catalog/navigation/left.phtml"/>

现在它的工作正常......