Magento产品列表默认每行显示3个产品,有时候我们需要调整这个数目,可以通过如下方法实现: 1)设置产品列表页中一行显示4个产品。 修改模板的layout/catalog.xml文件: <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml"> <!--添加--> <action method="setColumnCount"><count>4</count></action> ........................ </block>
2)设置产品搜索结果页面中一行显示4个产品。 修改模板的layout/catalogsearch.xml文件: <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml"> ........................ <!--添加下面的行即可--> <action method="setColumnCount"><column>4</column></action> ........................ </block> (责任编辑:最模板) |