Jump to content

Home Featured on PS 1.5.x


Recommended Posts

  • 3 weeks later...

Locate homefeatured.php in the modules folder > homefeatured folder of your installation (not the theme folder).

 

Find this line:

 

 

$products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 10));

 

 

And change it to this:

 

 

 

$products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 100));

if ($products) {

shuffle($products);

array_splice($products, ($nb ? $nb : 10));

}

 

 

 

Where 100 is the number of products you want it to choose from, i.e. here it will select amongst the first 100 products.

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...