SuperDuper Posted June 9, 2011 Share Posted June 9, 2011 Hello everyone,I am in v1.3.2.3How can I show New Items first in homefeatured block??Since the original "homefeatured block" is set to show the oldest items at the front.When I add new items on the "Home category",the "homefeatured block" is also showing the old items.Therefore, how to make "homefeatured block" shows the new items when I added them??Thanks for your help. Link to comment Share on other sites More sharing options...
uddhava Posted June 9, 2011 Share Posted June 9, 2011 That is what the new items module is for actually.You can make the featured module random, or play around with the sorting. Just search the forums Link to comment Share on other sites More sharing options...
shokinro Posted June 10, 2011 Share Posted June 10, 2011 check this thread, it might give you some clue to your solutionhttp://www.prestashop.com/forums/viewthread/31367/ Link to comment Share on other sites More sharing options...
SuperDuper Posted June 11, 2011 Author Share Posted June 11, 2011 check this thread, it might give you some clue to your solutionhttp://www.prestashop.com/forums/viewthread/31367/ Thanks, but need donation.And seems no one on the post anymore..... Link to comment Share on other sites More sharing options...
shokinro Posted June 11, 2011 Share Posted June 11, 2011 You can change the order by in following linefile: /modules/homefeatured/homefeatured.phpfunction: function hookHome($params)change following line, to add two more parameters orderBy and orderWay $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10)); for example, following line, will list product by product id with newest on the top from home category. $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10) , 'id_product', 'desc'); Link to comment Share on other sites More sharing options...
viar Posted July 11, 2011 Share Posted July 11, 2011 You can change the order by in following linefile: /modules/homefeatured/homefeatured.phpfunction: function hookHome($params)change following line, to add two more parameters orderBy and orderWay $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10)); for example, following line, will list product by product id with newest on the top from home category. $products = $category->getProducts(intval($params['cookie']->id_lang), 1, ($nb ? $nb : 10) , 'id_product', 'desc'); Thank you. Its solved with this line. Link to comment Share on other sites More sharing options...
Recommended Posts