Jump to content

HomeFeatured and New Arrivals on HomePage


phantom13

Recommended Posts

Almost every list uses use the product-list

 

You need change the module

 

or

 

You should the check the module BlockNewProducts files tpl for the block

 

themes/YOURTHEME/modules/blocknewproducts.tpl

 

change the {foreach from=$new_products item=newproduct name=myLoop} these read all  the products change to do just 3

Link to comment
Share on other sites

Solved, thanks for the hint.

 

For future references solution is to replace in themes/your_theme/modules/blocknewproducts.tpl

{foreach from=$new_products item=newproduct name=myLoop}

with

{for $i = 0 to 2}
	{$newproduct = $new_products[$i]}

Also don't forget to change

{/foreach}

with

{/for}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...