Magento ограничивает количество товаров, отображаемых в блоке новых товаров

Как ограничить количество товаров, отображаемых в блоке новых товаров? через cms / pages / design / макет обновления XML

<block type="catalog/product_new" name="home.catalog.product.new" template="catalog/product/new.phtml" >
   <action method="setColumnCount"><count>5</count></action> 
   <action method="setLimit"><limit>5</limit></action>
</block>

setLimit не работает и не работает

<action method="setDefaultGridPerPage"><limit>5</limit></action>

или же:

<action method="setData"><key>limit</key><value>3</value></action>

или же:

<action method="setProductLimit"><count>5</count></action> 

или же:

<action method="setProductsLimit"><count>5</count></action> 

или же:

<action method="setProductsCount"><count>5</count></action>

Ответы на вопрос(2)

Ваш ответ на вопрос