Productos aleatorios
//from:
$newProducts = Product::getNewProducts(intval($params['cookie']->id_lang), 0, Configuration::get('NEW_PRODUCTS_NBR') );
//to
$newProducts = Product::getNewProducts((int) Context::getContext()->language->id, 0, 100);
shuffle($newProducts);
array_splice($newProducts, Configuration::get('NEW_PRODUCTS_NBR') );