我可以添加 php 代码来更改 list.phtml 以显示该类别的所有产品吗?
我可以添加 php 代码来更改 list.phtml 以显示该类别的所有产品吗?
Can I add php code that will change list.phtml to display all products for the category?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议创建新的扩展来显示所有产品;
I'm recommed create new extension to display all product;
我同意 Mivec,你必须在新的 Magento 模块中添加你自己的代码。
您可能需要重写 Mage_Catalog_Block_Product_List::_getProductCollection() 才能更改默认过滤器。
I agree with Mivec, you have to add you own code in a new Magento module.
You'll probably have to rewrite the Mage_Catalog_Block_Product_List::_getProductCollection() to change the default filter.
实际上你可以这样做:
Actually you can do this: