Jump to content

[solved] Featured Products on the homepage - can we list the product by latest product date


Recommended Posts

Currently on the module > Featured Products on the homepage, the product are list in such a way that oldest product will be list 1st, is there anyway we can make modification so that the newest (latest) product is list first instead?

Link to comment
Share on other sites

change file of module home featured as following

File Location:
YourSiteRoot/modules/homefeatured/homefeatured.php

Change line

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),'date_add','DESC');

Link to comment
Share on other sites

×
×
  • Create New...