Jump to content

Remove (tax excl.) from Cart


Recommended Posts

I am running PrestaShop™ 1.6.0.6 and need to remove "(tax excl.)" from the cart page as seen below:

 

attachicon.gifprestashop_cart_problem.jpg

 

Have disabled tax in localization and cleared cache etc....to no avail.

 

Can anyone advise ?

 

Thanks in advance

You can change " tax " into " : " which will not remove it but it looks like it is removed.

 

If you want to change the language go to:

Back office > Localization > Translations > Installed module translations > Your theme > Your language > press Modify button and Scroll down to: Module blockcart and press number after Module blockcart >scroll down to Tax incl. and Tax excl. and change to " : "

  • Like 1
Link to comment
Share on other sites

You can change " tax " into " : " which will not remove it but it looks like it is removed.

 

If you want to change the language go to:

Back office > Localization > Translations > Installed module translations > Your theme > Your language > press Modify button and Scroll down to: Module blockcart and press number after Module blockcart >scroll down to Tax incl. and Tax excl. and change to " : "

Or you can remove by hiding code:

 

Go to ftp map /webspace/siteapps/Prestashop-188755/htdocs/themes/default-bootstrap/modules/blockcart

 

All 3 taxes can be hidden inside this file like so:

 

Total products: Ctrl F search for> "total products" and {*hide*} code like this:

 

{*{l s='(tax excl.)' mod='blockcart'}*}

                        {else}

                            {*{l s='(tax incl.)' mod='blockcart'}*}

 

Total shipping: Ctrl F search for> "total shipping" and {*hide*} code like this:

 

{*{l s='(tax excl.)' mod='blockcart'}*}

 

Total: Ctrl F search for> "total" and {*hide*} code like this:

 

{*{l s='(tax excl.)' mod='blockcart'}*}

                        {else}

                            {*{l s='(tax incl.)' mod='blockcart'}*}

 

Now all 3 tax should be gone after you saved en refreshed a few times

  • Like 1
Link to comment
Share on other sites

  • 4 months later...

Hey GTR, i found the same code you mentioned a few times, and im a bit confused as to which one to "hide"... i tried 3 different lines and nothing changed (after clearing cache etc) perhaps i am doing it wrong

 

do i put the {* before or after the {if} ? heres the coding from my blockcart, is it possible your able to underline or highlight the exact lines i am to hide?

 

******UPDATE******* i just read somewhere there is the option to turn off the tax display in the back office - i found it in localization / taxes (right down the bottom) i selected to not display taxes and it worked for me. Please excuse my post LMAO

Edited by exposeclothing (see edit history)
Link to comment
Share on other sites

  • 1 month later...
×
×
  • Create New...