fikzliang Posted November 3, 2012 Share Posted November 3, 2012 How to set home featured to random product in PS 1.5.x because no option in configure? Link to comment Share on other sites More sharing options...
sshare Posted November 18, 2012 Share Posted November 18, 2012 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. 1 Link to comment Share on other sites More sharing options...
Recommended Posts