Tech-4U.net Posted October 9, 2010 Share Posted October 9, 2010 Bonjour,J'ai un soucis avec la page de nouveaux produits et la page des meilleures ventes...En effet, tout est inversé, le premier affiché c'est le + vieux produits ou le - acheté...Pour les nouveau produits : cliquez-icinew-products.php : ?php include(dirname(__FILE__).'/config/config.inc.php'); include(dirname(__FILE__).'/header.php'); include(dirname(__FILE__).'/product-sort.php'); $nbProducts = intval(Product::getNewProducts(intval($cookie->id_lang), isset($p) ? intval($p) - 1 : NULL, isset($n) ? intval($n) : NULL, true)); include(dirname(__FILE__).'/pagination.php'); $smarty->assign(array( 'products' => Product::getNewProducts(intval($cookie->id_lang), intval($p) - 1, intval($n), false, $orderBy, $orderWay), 'nbProducts' => intval($nbProducts))); $smarty->display(_PS_THEME_DIR_.'new-products.tpl'); include(dirname(__FILE__).'/footer.php'); Pour les meilleures ventes : Cliquez-icibest-sales.php : ?php include(dirname(__FILE__).'/config/config.inc.php'); include(dirname(__FILE__).'/header.php'); include(dirname(__FILE__).'/product-sort.php'); $nbProducts = intval(ProductSale::getNbSales()); include(dirname(__FILE__).'/pagination.php'); $smarty->assign(array( 'products' => ProductSale::getBestSales(intval($cookie->id_lang), intval($p) - 1, intval($n), $orderBy, $orderWay), 'nbProducts' => $nbProducts)); $smarty->display(_PS_THEME_DIR_.'best-sales.tpl'); include(dirname(__FILE__).'/footer.php'); Quelqu'un sait quoi faire? Parce que là ça me nuit + qu'autre chose...Merci. Link to comment Share on other sites More sharing options...
Alexmp4 Posted October 21, 2013 Share Posted October 21, 2013 As tu trouvé une solution ? J'ai le même soucis et je voit un post sans réponse... c'est dommage ! 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