Magento - 产品列表页面上的自定义过滤器
我尝试为产品列表页面创建 2 个过滤器,一个用于 price
,另一个用于我制作的自定义属性; location
理想情况下,我想要的是一个包含价格范围的下拉菜单,另一个包含位置和提交按钮的下拉菜单,然后将进行过滤。
我环顾四周,但似乎找不到任何如何实现这一点的示例。
在我本地的默认 Magento 商店中,我有分层导航(在左侧),过滤给我的 URL 为:index.php/products?location=7&dir=asc&order=position&price= 3%2C1000
因此,如果可能的话,下拉过滤器将需要模拟这一点。
谢谢
I ma trying to create 2 filters for a product list page, one for price
and the other for a custom attribute I have made; location
Ideally, what I'd like is a drop down, with the price ranges and another dropdown with the locations and a submit button, which will then filter.
I've had a look round, but I can't seem to find any examples of how to implements this.
On a default Magento store i have locally, I have the layered navigation (on the left) and filtering gives me a URL of: index.php/products?location=7&dir=asc&order=position&price=3%2C1000
So the dropdown filters will need to emulate this, if possible.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须使用 html 手动执行此操作,并将参数传递给搜索查询字符串。
I had to do this manually with html and pass in the parameters to the search query string.