Ik ben nieuw in prestashop. Ik heb in de forum gezien dat ik deze code moet invoegen als ik willekeurige producten wil zien in featured products.
$products = $category->getProducts(intval($params['cookie']->id_lang), 1, 100);
if ($products) {
shuffle($products);
array_splice($products, ($nb ? $nb : 10));
}
Dit zou ik moeten toevoegen in homefeaturedproducts.php. Maar waar vind ik dit php filetje?