Magento limit the number of products shown with in the new products block

前端 未结 2 1197
时光取名叫无心
时光取名叫无心 2021-01-13 13:37

How to limit the number of products shown with in the new products block? via cms/pages/design/Layout update XML



        
2条回答
  •  無奈伤痛
    2021-01-13 14:09

    Try

     5
    

    See /app/code/core/Mage/Catalog/Block/Product/New.php

    /**
     * Set how much product should be displayed at once.
     *
     * @param $count
     * @return Mage_Catalog_Block_Product_New
     */
    public function setProductsCount($count)
    {
        $this->_productsCount = $count;
        return $this;
    }
    

    Read more @ http://www.magentocommerce.com/wiki/groups/248/display_products_on_home_page

提交回复
热议问题