我正在尝试在我的产品页面中添加相关产品的分页,因为有可能获得10个类似的产品。我在主页上发现了一些关于如何将分页添加到产品列表的文章,并认为我可以对我在产品页面中添加的相关产品应用类似的方法。这是我在catalog.xml中添加的片段,认为它可能有效:
<block type="catalog/product_list_related" name="relatedlist" template="catalog/product/list/related.phtml">
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>3</count></action>
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
<block type="page/html_pager" name="product_list_toolbar_pager"/>
</block>
<action method="setToolbarBlockName"><name>product_list_toolbar</name><count>3</count></action>
</block>
相关产品仍然显示但没有分页。我的代码有问题还是我错过了什么?或者,如果没有对magento文件夹中的任何文件进行大的修改,是否有更好的方法?谢谢你提前。