phantom13 Posted March 21, 2015 Share Posted March 21, 2015 Hi, Is there any way to modify the number of displayed products for HomeFeatured and NewArrivals modules to 12 but only on the homepage? In any other place they are displayed I want only 3. Thanks! Link to comment Share on other sites More sharing options...
jgamio Posted March 21, 2015 Share Posted March 21, 2015 These 2 are only in the home page but default You can change the number to display on back office -> modules search the module -> configuration Where did you see homeFeactured on other place Link to comment Share on other sites More sharing options...
phantom13 Posted March 21, 2015 Author Share Posted March 21, 2015 Home featured is only in homepage but new arrivals is also in product list. So i just need the new arrivals trick to display more products if homepage, else just 3 Link to comment Share on other sites More sharing options...
jgamio Posted March 21, 2015 Share Posted March 21, 2015 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 More sharing options...
phantom13 Posted March 22, 2015 Author Share Posted March 22, 2015 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now