Jump to content

Remove TAX in checkout when choosing delivery method


Recommended Posts

Hello All


When 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 regards
Rudger

post-778949-0-75992400-1405331786_thumb.png

Link to comment
Share on other sites

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

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

  • 1 month later...

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 by stepeek (see edit history)
Link to comment
Share on other sites

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...