darthdeus Posted July 29, 2012 Share Posted July 29, 2012 Is there any way I can make the new products block module sort products so that the newest ones are first, instead of last? I'm using prestashop 1.4 Link to comment Share on other sites More sharing options...
shacker Posted August 3, 2012 Share Posted August 3, 2012 edit the blocknewproducts.php in modules/blocknewproducts. search this line $newProducts = Product::getNewProducts((int)($params['cookie']->id_lang), 0, (int)(Configuration::get('NEW_PRODUCTS_NBR'))); and change to $newProducts = Product::getNewProducts((int)($params['cookie']->id_lang), 0, (int)(Configuration::get('NEW_PRODUCTS_NBR')), null, "date_add", "DESC"); Link to comment Share on other sites More sharing options...
Recommended Posts