RudgerDZ Posted July 14, 2014 Share Posted July 14, 2014 Hello AllWhen you are in checkout and get to choose your delivery method (under the shipping tab)the prices are shown including TAX.I would like to change this, so the prices of the different delivery methods are shown excluding TAX. Can someone help me to fix this? Best regardsRudger Link to comment Share on other sites More sharing options...
bellini13 Posted July 14, 2014 Share Posted July 14, 2014 I assume you want to keep your product prices including tax? If so, then I think you will have to edit your themes order-carrer.tpl file You are going to see code similar to below, depending on your version of Prestashop and the theme you are using. {if $use_taxes == 1} {if $priceDisplay == 1} {convertPrice price=$option.total_price_without_tax} {l s='(tax excl.)'} {else} {convertPrice price=$option.total_price_with_tax} {l s='(tax incl.)'} {/if} {else} {convertPrice price=$option.total_price_without_tax} {/if} You could try to change it so it does not consider the $priceDisplay variable and always shows the price excluding tax Link to comment Share on other sites More sharing options...
RudgerDZ Posted July 14, 2014 Author Share Posted July 14, 2014 Thank you Bellini13 for the quick reply! I have made the code like this, and it seems to be fixed if $use_taxes == 1} {if $priceDisplay == 1} {convertPrice price=$option.total_price_without_tax} {l s='(tax excl.)'} {else} {convertPrice price=$option.total_price_without_tax} {l s='(tax excl.)'} {/if}{else} {convertPrice price=$option.total_price_without_tax}{/if} Link to comment Share on other sites More sharing options...
stepeek Posted September 7, 2014 Share Posted September 7, 2014 (edited) Hello, I would like to know why the label "(tax incl.)" and "(tax excl.)" is shown in cart checkout even if I disabled the tax whenever I could. It looks, that variable $use_taxes remains equal to 1 even when taxes are disabled. How could I assure to have it assigned to zero so the condition above works correctly? Thank you very much for help. Edited September 7, 2014 by stepeek (see edit history) 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