0

如何从基本 url 使用 magento 中的过滤器:

http://www.shop.com/category.html?cat=100&color=77&manufacturer=7&price=20-30

作品!

但是我该如何使用例如:

http://www.shop.com/?cat=100&color=77&manufacturer=7&price=20-30

类别“100”已被参数“cat”过滤。

谢谢!

4

1 回答 1

0

那么你需要一个“分层导航”和主页上的“类别列表”。

CMS > Manage Pages > Homepage 并将以下内容添加到编辑器中:

{{block type="catalog/product_list" column_count="4" category_id="ROOT_CAT_ID_HERE" template="catalog/product/list.phtml"}}

在“布局更新 XML”选项卡中添加:

 <reference name="left">
    <block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>

祝你好运!

于 2013-06-23T21:50:19.470 回答