Superbegood31 Posted November 6, 2012 Share Posted November 6, 2012 (edited) 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 November 9, 2012 by Superbegood (see edit history) Link to comment Share on other sites More sharing options...
Superbegood31 Posted November 7, 2012 Author Share Posted November 7, 2012 Personne n'a d'idées concernant mon post ? Merci encore Link to comment Share on other sites More sharing options...
Superbegood31 Posted November 9, 2012 Author Share Posted November 9, 2012 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 More sharing options...
kiwioups Posted November 18, 2012 Share Posted November 18, 2012 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 More sharing options...
adesign Posted January 16, 2013 Share Posted January 16, 2013 Bonjour, comment faire pour que les prix soient affichés ht ET ttc sous les produits? j'ai beau avoir renseigné le prix ht, seul le ttc s'affiche sous presta 1.5.3.1 Merci par avance pour la réponse cordialement 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