fauxhemias Posted May 22, 2013 Share Posted May 22, 2013 Bonjour tout le monde, Je m'essai à la modification du théme d'origine de Prestashop 1.5.4.0 en local, pour voir comment fonctionne prestashop. Pour le moment j'ai pu modifier les différents fichiers .css & .tpl pour arriver à mes fins. Grâce à des infos piochés sur le forum ou ailleurs. Par contre là je bloque, je cherche à afficher en dessous des produits phares de la page d'accueil différentes catégories. Par exemple : / Homme / / Femme / / Enfants / Avec un affichage de 4 ou 6 produits pour chaque catégorie. Le souci à bien été abordé dans cette discution : http://www.prestashop.com/forums/topic/207501-modifier-le-module-homefeatured-15x/ Mais en effectuant la modif conseillée sur le fichier homefeatured.php : C'est très simple, remplacer ce bloc ligne 104 env. : $category = new Category(Context::getContext()->shop->getCategory(), (int)Context::getContext()->language->id); $nb = (int)(Configuration::get('HOME_FEATURED_NBR')); $products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 10)); Par : $category = new Category(4, Configuration::get('PS_LANG_DEFAULT')); $nb = (int)(Configuration::get('HOME_FEATURED_NBR')); $products = $category->getProducts(intval($params['cookie']->id_lang), 1, 5); if ($products) { shuffle($products); array_splice($products, ($nb ? $nb : 10)); Je me retrouve avec une page blanche.. Quelqu'un aurait une idée, ou un lien ou me fournir svp ? ++ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now