If someone want to show more than 5 new product in home page.
Try This…
This example to show 10 items in 2 rows 5 products each.
You need to change the line in \app\code\core\Mage\Catalog\Block\Product\New.php
$products->setOrder(’news_from_date’)->setPageSize(5)->setCurPage(1);
change to
$products->setOrder(’news_from_date’)->setPageSize(10)->setCurPage(1);
Andneed to change new.phtml
<?php if ($i>5): continue; endif; ?>
change to
<?php if ($i==5): echo "</tr><tr>"; endif; ?>
<?php if ($i>9): continue; endif; ?>
(replying to different threads with this info)
Update on this for version 1.1.8 (and probably higher but untested):
You can use an action in the layout template to set the number of new products displayed. Find the layout xml file that has a block of type catalog/product_new, this displays the new products. Next add an action with method setProductsCount as follows (I use the new products block in a cms page):
If someone want to show more than 5 new product in home page.
Try This…
This example to show 10 items in 2 rows 5 products each.
You need to change the line in \app\code\core\Mage\Catalog\Block\Product\New.php
$products->setOrder(’news_from_date’)->setPageSize(5)->setCurPage(1);
change to
$products->setOrder(’news_from_date’)->setPageSize(10)->setCurPage(1);
Andneed to change new.phtml
<?php if ($i>5): continue; endif; ?>
change to
<?php if ($i==5): echo "</tr><tr>"; endif; ?>
<?php if ($i>9): continue; endif; ?>
Good luck....
Do you know of any way of adding more rows? maybe 3 or 4 rows.
(replying to different threads with this info)
Update on this for version 1.1.8 (and probably higher but untested):
You can use an action in the layout template to set the number of new products displayed. Find the layout xml file that has a block of type catalog/product_new, this displays the new products. Next add an action with method setProductsCount as follows (I use the new products block in a cms page):
If someone want to show more than 5 new product in home page.
Try This…
This example to show 10 items in 2 rows 5 products each.
You need to change the line in \app\code\core\Mage\Catalog\Block\Product\New.php
$products->setOrder(’news_from_date’)->setPageSize(5)->setCurPage(1);
change to
$products->setOrder(’news_from_date’)->setPageSize(10)->setCurPage(1);
Andneed to change new.phtml
<?php if ($i>5): continue; endif; ?>
change to
<?php if ($i==5): echo "</tr><tr>"; endif; ?>
<?php if ($i>9): continue; endif; ?>