dvd74 Posted January 31, 2017 Share Posted January 31, 2017 (edited) Hi, How do I print the variable total_shipping_tax_excl, in email template order_conf.html? Edited January 31, 2017 by dvd74 (see edit history) 1 Link to comment Share on other sites More sharing options...
Xavi K Posted March 6, 2017 Share Posted March 6, 2017 I need to do the same! Can anybody help us? Thank you Link to comment Share on other sites More sharing options...
rocky Posted March 7, 2017 Share Posted March 7, 2017 Try changing line 753 (in PrestaShop v1.6.1.11) of classes/PaymentModule.php from: '{total_shipping}' => Tools::displayPrice($order->total_shipping, $this->context->currency, false), to: '{total_shipping}' => Tools::displayPrice($order->total_shipping, $this->context->currency, false), '{total_shipping_tax_excl}' => Tools::displayPrice($order->total_shipping_tax_excl, $this->context->currency, false), This should make {total_shipping_tax_excl} available in order_conf.html and order_conf.txt. 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