magento修改列表页每行商品显示数量

其实很简单,找到模板文件下list.phtml文件app\design\frontend\base\default\template\catalog\product
$_columnCount =  $this->getColumnCount();
将 $this->getColumnCount()改为你想每行显示的商品数就行了,当然这里改过后,还要配合css才行,有的人会问,这个 $this->getColumnCount()在哪来的,模板文件中都指出来了,看模板文件首部
/**
 * Product list template
 *
 * @see Mage_Catalog_Block_Product_List
 */
路径就是Mage/Catalog/Block/Product/,这里可以搜下,呵呵,最简单的方法,在Abstract.php找到了public function getColumnCount(){...}大概了解,就是个判断,$this->setData('column_count', $this->_defaultColumnCount);这句大概就是赋值吧,搜索下$this->_defaultColumnCount,果然 protected $_defaultColumnCount = 3;这里的3就是你要的行商品数,改你想要吧。

你可能感兴趣的:(Magento)