ManOfHonor Posted July 21, 2013 Share Posted July 21, 2013 I need module to view last added products.. like a featured products. Anybody can help me with that? Link to comment Share on other sites More sharing options...
vekia Posted July 21, 2013 Share Posted July 21, 2013 in this case you have to edit module class (.php file) in the file search for: public function hookDisplayHome($params) this is function which displays the block. you've got there something like this: $products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 10)); change it to: $products = Product::getNewProducts((int)($params['cookie']->id_lang), 0, $nb); Link to comment Share on other sites More sharing options...
ManOfHonor Posted July 25, 2013 Author Share Posted July 25, 2013 Big thnx for help! Vekia Link to comment Share on other sites More sharing options...
vekia Posted July 25, 2013 Share Posted July 25, 2013 you're welcome im going to mark this thread as [solved] if you've got any other questions related to this case - feel free to continue discussion here best regards Link to comment Share on other sites More sharing options...
Divyesh Prajapati Posted July 26, 2013 Share Posted July 26, 2013 in this case you have to edit module class (.php file) in the file search for: public function hookDisplayHome($params) this is function which displays the block. you've got there something like this: $products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 10)); change it to: $products = Product::getNewProducts((int)($params['cookie']->id_lang), 0, $nb); Hello! Vekia, To show new products there is module provided by default in prestashop, But it only shows product to right and left column.. If one wants to show new products on home page with slider then as you said there is nothing found blocknewproducts.php file... What to do?? Link to comment Share on other sites More sharing options...
vekia Posted July 26, 2013 Share Posted July 26, 2013 what you exactly expect? i just pasted a little solution here to display new products instead the featured one. Link to comment Share on other sites More sharing options...
Divyesh Prajapati Posted July 26, 2013 Share Posted July 26, 2013 what you exactly expect? i just pasted a little solution here to display new products instead the featured one. If i want to use new product module and using that i want to show new products on homepage then what to do??? Link to comment Share on other sites More sharing options...
vekia Posted July 26, 2013 Share Posted July 26, 2013 in this case you have to modify the source code a bit, you need to add support of the home hook, then create separate tempalte file with sources similar to the homefeatured module. and of course reinstall the module Link to comment Share on other sites More sharing options...
Recommended Posts