JohnZZ Posted October 19, 2009 Share Posted October 19, 2009 Mon problème est simple, j'ai deux promotions et lorsque l'on clique sur "Toutes les promos" du module Bloc promotion dans le FO, il affiche bien la liste avec les deux promotions mais affiche aussi la barre de pagination avec 17 pages (qui doivent correspondre à la totalité des produits). Lorsque l'on essaye de voir ces autres pages on tombe sur le message "Aucune promotion."Merci d'avance pour toutes suggestions. P.-S. : les autres modules comme Nouveaux produits avec "Tous les nouveaux produits" fonctionnent très bien, visiblement c'est un problème spécifique au module promotion.Dans prices-drop.php j'ai bien les lignes : $nbProducts = Product::getPricesDrop(intval($cookie->id_lang), NULL, NULL, true); include(dirname(__FILE__).'/pagination.php'); Link to comment Share on other sites More sharing options...
JohnZZ Posted October 19, 2009 Author Share Posted October 19, 2009 Je me réponds. Le bug a été rapporté ici et résolu dans les svn.Le fichier product.php modifié, tiré de la subversion, résolvant le problème : Product.php Link to comment Share on other sites More sharing options...
ChristopheS Posted February 2, 2010 Share Posted February 2, 2010 Je pense que la correction serait plutôt sur price-drop.php <?php include(dirname(__FILE__).'/config/config.inc.php'); include(dirname(__FILE__).'/header.php'); include(dirname(__FILE__).'/product-sort.php'); //bug corrigé > $nbProducts = Product::getPricesDrop(intval($cookie->id_lang), NULL, NULL, true); $nbProducts = intval(Product::getPricesDrop(intval($cookie->id_lang), intval($p) - 1, intval($n), false)); include(dirname(__FILE__).'/pagination.php'); prices-drop.php 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