更改 Magento 中的新产品小部件排序顺序
我的网上商店使用 Magento,我的主页使用新产品小部件。我想更改小部件内产品的排序顺序。
我搜索了几个小时但无法弄清楚。
I'm using Magento for my webshop and my homepage uses a new products widget. I want to change the sort order for the products within the widget.
I searched for hours but I can't figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显示新产品的块是:
参见函数 _beforeToHtml()
默认排序是按开始日期降序完成的:
您可以将此块复制到 code/local 并将其替换为您想要的位置或排序顺序...或使用 Magento 扩展扩展它。
您可能需要搜索 Magento Connect 以查看是否有适合您需求的模块。
The block for displaying new product is:
see the function _beforeToHtml()
default sorting is done by start date descending:
You can copy this block to code/local and replace it with position or the sort order you want... or extend it with a Magento extension.
You might want to search Magento Connect to see if there is any module that would fit your needs.