houin Posted March 27, 2014 Share Posted March 27, 2014 Hello, I would want to change the number of product in the width in the homefeatured module. I want to see 3 products instead of 4. Thank you for your answer. Link to comment Share on other sites More sharing options...
prestamax Posted March 27, 2014 Share Posted March 27, 2014 homefeatured is using the file product-list.tpl for listing the products. If you open product-list.tpl find {if $page_name !='index' && $page_name !='product'} {assign var='nbItemsPerLine' value=3} {assign var='nbItemsPerLineTablet' value=2} {assign var='nbItemsPerLineMobile' value=3} {else} {assign var='nbItemsPerLine' value=4} {assign var='nbItemsPerLineTablet' value=3} {assign var='nbItemsPerLineMobile' value=2} {/if} Change the number after {else} from {else} {assign var='nbItemsPerLine' value=4} to {else} {assign var='nbItemsPerLine' value=3} Link to comment Share on other sites More sharing options...
Recommended Posts