kendrix Posted August 21, 2013 Share Posted August 21, 2013 (edited) Witam Chciałbym się dowiedzieć co jest nie tak, że w bloku nowe produkty wyświetlają mi się losowo tylko 3 te same produkty i zmieniają się tylko kolejnością. PS 1.5.4.1 Mam coś takiego blocknewproducts public function hookRightColumn($params) { $newProducts = Product::getNewProducts((int)($params['cookie']->id_lang), 0, (int)(Configuration::get('NEW_PRODUCTS_NBR'))); $nb = (int)(Configuration::get('NEW_PRODUCTS_NBR')); if (!$newProducts && !Configuration::get('PS_BLOCK_NEWPRODUCTS_DISPLAY')) return; shuffle($newProducts); array_splice($newProducts, ($nb ? $nb : 3)); $this->smarty->assign(array( 'new_products' => $newProducts, 'mediumSize' => Image::getSize(ImageType::getFormatedName('medium')), )); return $this->display(__FILE__, 'blocknewproducts.tpl'); } Edited August 21, 2013 by kendrix (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted August 21, 2013 Share Posted August 21, 2013 a tych nowych produktów jest więcej? i jaką liczbę produktów masz zdefiniowaną w ustawieniach modułu? Link to comment Share on other sites More sharing options...
kendrix Posted August 21, 2013 Author Share Posted August 21, 2013 nowych produktów jest więcej. w ustawieniach modułu mam żeby wyświetlały się trzy i wyświetlają się 3 ostatnio dodane z 7 Link to comment Share on other sites More sharing options...
Recommended Posts