更改 Magento 中的新产品小部件排序顺序

发布于 2024-12-18 13:04:18 字数 77 浏览 2 评论 0原文

我的网上商店使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海螺姑娘 2024-12-25 13:04:18

显示新产品的块是:

app/code/core/Mage/Catalog/Block/Product/New.php

参见函数 _beforeToHtml()
默认排序是按开始日期降序完成的:

->addAttributeToSort('news_from_date', 'desc')

您可以将此块复制到 code/local 并将其替换为您想要的位置或排​​序顺序...或使用 Magento 扩展扩展它。

您可能需要搜索 Magento Connect 以查看是否有适合您需求的模块。

The block for displaying new product is:

app/code/core/Mage/Catalog/Block/Product/New.php

see the function _beforeToHtml()
default sorting is done by start date descending:

->addAttributeToSort('news_from_date', 'desc')

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文