facbest Posted March 17, 2014 Share Posted March 17, 2014 Bonjour, Je récupère le montant total dans un popup. Le problème c'est que ça récupère le montant TTC + frais de transport. {if $cart_qties > 0} {if $priceDisplay == 1} {convertPrice price=$cart->getOrderTotal(false)} {else} {convertPrice price=$cart->getOrderTotal(true)} {/if} {/if} Comment changer pour afficher juste le prix total sans le transport. Merci de vos réponses. Link to comment Share on other sites More sharing options...
math_php Posted March 18, 2014 Share Posted March 18, 2014 Bonjour, Peut être de cette façon : {if $cart_qties > 0} {if $priceDisplay == 1} {convertPrice price=$cart->getOrderTotal(false,Cart::BOTH_WITHOUT_SHIPPING)} {else} {convertPrice price=$cart->getOrderTotal(true,Cart::BOTH_WITHOUT_SHIPPING)} {/if} {/if} 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