bernat Posted July 1, 2010 Share Posted July 1, 2010 Hi, is possible to order by name (no by ID) the products in "Home featured products"?I try to change homefeatured.tpl parameters but don't works :down: please, can you help me?Thankyou so much!!! Link to comment Share on other sites More sharing options...
rocky Posted July 1, 2010 Share Posted July 1, 2010 Change line 69 of modules/homefeatured/homefeatured.php (in PrestaShop v1.3.1) from: $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10)); to: $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10), 'name', 'ASC'); 2 Link to comment Share on other sites More sharing options...
bernat Posted July 1, 2010 Author Share Posted July 1, 2010 Thanks so much Moderator!!!One of the best things of Prestashop is this amazing forum!! and his moderator!!!!!!it works perfect in Prestashop 1.2.5.0 Link to comment Share on other sites More sharing options...
summer Posted July 6, 2010 Share Posted July 6, 2010 One of the best things of Prestashop is this amazing forum!! and his moderator!!!!!! I agree.@rocky : what if I want the featured product list to sort by Recently Added Products? (not the Home New Products Module)thanks Link to comment Share on other sites More sharing options...
rocky Posted July 6, 2010 Share Posted July 6, 2010 Then change the line above to: $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10), 'date_add', 'DESC'); This will display the most recently added product first. 2 Link to comment Share on other sites More sharing options...
summer Posted July 6, 2010 Share Posted July 6, 2010 perfect.thank you Link to comment Share on other sites More sharing options...
bluecafe Posted July 29, 2011 Share Posted July 29, 2011 Thank you so much! Exactly what I was looking for. Works perfectly in PS 1.4.3 too. You guys are wonderful :-) Link to comment Share on other sites More sharing options...
LovePrestashop Posted August 2, 2011 Share Posted August 2, 2011 Change line 69 of modules/homefeatured/homefeatured.php (in PrestaShop v1.3.1) from:<br/><br/> <br/>$products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10));<br/> <br/><br/>to:<br/><br/> <br/>$products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10), 'name', 'ASC');<br/> Hi rocky, is it possible to select featured products randomly? thanks Link to comment Share on other sites More sharing options...
juanb Posted July 27, 2012 Share Posted July 27, 2012 Hi, i have this module (Home featured products) installed into my site. How can order products by "position" ? I have configurered products preferences in order to display "position inside category" but does not work. Edition of Products position work fine as I saw at database (ps_category_product table) but homepage does not show the proper products order. Thanks in advanced Juan Link to comment Share on other sites More sharing options...
Recommended Posts