显示 magento 新产品,如标准类别
在magento 1.4中,它有显示新产品的默认页面,但是我如何在一页中显示所有这些产品,就像普通类别显示下面的所有项目一样。我当前的设置是在主页中显示8个新产品,并提供一个显示所有新产品的链接。
In magento 1.4 it has default page showing new products but how can I show all these products in one page like ordinary category showing all items underneath.. My current setup is showing 8 new products in homepage and a link to show all new products.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要更改主页上新产品的数量,您应该能够编辑 app/code/core/Mage/Catalog/Block/Product/New.php 中的值
Change
const DEFAULT_PRODUCTS_COUNT = 5;
您想要的任何值 - 或 999 来显示所有新的。
To change the number of new products on the homepage, you should be able to edit the value in app/code/core/Mage/Catalog/Block/Product/New.php
Change
const DEFAULT_PRODUCTS_COUNT = 5;
to whatever value you'd like - or 999 to show all new.