open /modules/homefeatured/homefeatured.php file
find this :
$products = $category->getProducts((int)($params[‘cookie’]->id_lang), 1, ($nb ? $nb : 10));
directly after that code, add this :
if ($products) { shuffle($products); array_splice($products, ($nb ? $nb : 10)); }
If you change it to
$nb1 = 20;
$products = $category->getProducts((int)($params[‘cookie’]->id_lang), 1, ($nb1 ? $nb1 : 10));
if ($products) { shuffle($products); array_splice($products, ($nb ? $nb : 10)); }
it will select random from the first 20 products.. And show whatever $nb is set to in configuration