我有我的 magento 显示为一个网格,但它正在做一些相当奇怪的事情。如果您查看网页http://www.theshirt.org,您会看到它显示 3 个产品,然后在下一行显示 1,然后是 3,然后是 1,依此类推。
有任何想法吗?
我有我的 magento 显示为一个网格,但它正在做一些相当奇怪的事情。如果您查看网页http://www.theshirt.org,您会看到它显示 3 个产品,然后在下一行显示 1,然后是 3,然后是 1,依此类推。
有任何想法吗?
您每行的列数设置为 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>