例如focal模板的一个网www.lacysky.com)产品页展示产品数量是9 15 30  ,现在改成修改成: 30 45 60

只要找到这个行数 改成如下的形式就可以了

  protected function _getAvailableLimit($mode)
    {
        if (isset($this->_availableLimit[$mode])) {
            return $this->_availableLimit[$mode];
        }
        $perPageConfigKey = 'catalog/frontend/' . $mode . '_per_page_values';
        $perPageValues = (string)Mage::getStoreConfig($perPageConfigKey);
        $perPageValues = explode(',', $perPageValues);
        $perPageValues = array_combine($perPageValues, $perPageValues);
       $perPageValues=  array ( 30 => 30,  45 => 45  ,60 => 60 );
        return $perPageValues;
        if (Mage::getStoreConfigFlag('catalog/frontend/list_allow_all')) {
            return ($perPageValues + array('all'=>$this->__('All')));
        } else {
            return $perPageValues;
        }
    }

在文件catalog/block/product/list/toolbar.php这个文件里修改.