How to remove tax from shipping price


https://forum.kartris.com/Topic3232.aspx
Print Topic | Close Window

By bpaluch - Thu 7 Aug 2014
How do I stop Kartris from charging tax on my shipping price?
By UKcentric - Fri 8 Aug 2014
In admin, go to:
  • Regional Setup/Shipping
  • Click Shipping Methods tab
  • Click Edit next to the Shipping Method you want to change
  • Choose a tax band with 0% tax
Does that work?
By bpaluch - Thu 14 Aug 2014
I don't have the option to change the tax band there.
By Tiggywiggler - Fri 15 Aug 2014
What options do you have?
By bpaluch - Tue 19 Aug 2014
I am using standard post and I have it set up to use UPS rates. Here's a screenshot of the edit shipping method page.

By Neil - Tue 19 Aug 2014
You toggle VAT under

regional setup > shipping > shipping zones > destinations > edit >
By bpaluch - Wed 3 Sep 2014
Actually, no that does NOT work...

there is just ONE tax setting, and it taxes the ITEM AND SHPPING. I want to tax the ITEMS shipped to NY, but NOT the shipping price.

Please advise
By bpaluch - Tue 9 Sep 2014
This is currently not possible with config settings, but you can do it in the code by changing 3 lines

In BasketBLL, line 1715 or thereabout, change

ShippingPrice.TaxRate = IIf(ApplyTax, .ComputedTaxRate, 0)
to

ShippingPrice.TaxRate = 0


In KartrisClasses.vb, in two of the Public Sub New, change

numShippingTaxRate = ShippingCountry.ComputedTaxRate

to
numShippingTaxRate = 0



This will leave your ITEM tax intact, and just remove the SHIPPING tax.