Magento - 根据页码显示不同数量的元素的分页
我试图在 magento 中实现非标准行为;在产品类别中,我基本上需要根据当前页码显示不同数量的产品。 我不太确定是否可以通过 magento admin 中的配置设置来指定这一点。
所以我想我需要连接到 magento 核心才能实现这一点。 关于从哪里开始/如何覆盖默认行为有什么建议吗?
提前致谢
I'm trying to achieve a non-standart behaviour in magento; Within products categories, I basically need to display a different number of products depending on the current page number.
I'm not quite sure that I can specify this just by a configuration settings in magento admin.
So I suppose I will need to hook into magento core to achieve this.
Any recommandation on where to start this / how to override default behaviour?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。为了实现这一点,您必须重写 Mage_Catalog_Block_Product_List 中的 _getProductCollection 方法。
Yes. You'll have to override the _getProductCollection method in Mage_Catalog_Block_Product_List in order to achieve that.