Jump to content

[RESOLU] Affichage des prix HT block bestsellers


Recommended Posts

Bonjour à tous,

 

Sur ma boutiques les prix sont affichés en HT et TTC.

 

Pour une cohérence, je souhaiterai que le block bestsellers en face de même.

 

J'ai essayé de modifier le fichier blockbestsellers.tpl de la façon product.tpl et/ou product-list.tpl mais cela ne fonctionne pas.

 

Merci d'avance

Edited by Superbegood (see edit history)
Link to comment
Share on other sites

J'ai finit par trouver, voici la réponse pour ceux qui comme souhaite afficher les prix HT dans le module bestsellers.

 

Dans le fichier blockbestsellers.php du module.

Ligne 112 :

A la place de :

$bestseller['price'] = Tools::displayPrice(Product::getPriceStatic((int)($bestseller['id_product'])), $currency);

Remplacer par :

$bestseller['price'] = Tools::displayPrice(Product::getPriceStatic((int)($bestseller['id_product']), Product::getTaxCalculationMethod() == PS_TAX_EXC), $currency);

 

Dans le fichier blockbestsellers.tpl du module.

Ligne 42 :

A la place de :

<span class="price">{$product.price}</span>

Remplacer par :

<span class="price">{$product.price} {l s=' HT'}</span>

 

Voilà

Link to comment
Share on other sites

  • 2 weeks later...

pour version 1.5.1

 

dans le fichier blockbestsellers.php du module.

Ligne 112:

 

A la place de :

$bestseller['price'] = Tools::displayPrice(Product::getPriceStatic((int)($bestseller['id_product'])), $currency);
   $best_sellers[] = $bestseller;

 

remplacer par:

$bestseller['price'] = Tools::displayPrice(Product::getPriceStatic((int)($bestseller['id_product']),false), $currency);
   $best_sellers[] = $bestseller;

 

et c'est tout :)

Link to comment
Share on other sites

  • 1 month 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...