我让我的magento显示为一个网格,但它做的很奇怪。如果您查看网页http://www.theshirt.org,您会看到它显示3个产品,然后在下一行显示1,而不是3,然后是1,依此类推。
有什么想法吗?
答案 0 :(得分:2)
每行的列数设置为4,您需要将其更改为3
转到/ app / design / frontend / default / [theme] /layout/catalog.xml
<catalog_product_view translate="label">
<label>Catalog Product View (Any)</label>
....
<block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
<action method="setColumnCount"><columns>5</columns></action>
....
将行更改为
<action method="setColumnCount"><columns>3</columns></action>