Jump to content

Nouveaux produits et meilleures ventes à l'envers...


Recommended Posts

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-ici

new-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-ici



best-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

  • 3 years later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...