Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的产品页面上显示了评论列表并显示了分页,但我如何更改默认分页值 10、20、50。使用管理员设置。
您要查找的文件是:
/app/code/core/Mage/Page/Block/Html/Pager.php
您要修改以调整评论分页限制的行是这一行:
protected $_availableLimit = array(10=>10,20=>20,50=>50);
将数字替换为您喜欢的评论页数限制。
当然,由于此更改是在核心代码中,您首先要将此文件复制到 /app/code/local/Mage/Page/Block/Html,然后进行更改,以确保升级不会覆盖它.