Jump to content

Tax Settings on Prestashop


Recommended Posts

  • 3 weeks later...

I don't know about GoldMaverick, but I upgraded to the most recent version of PrestaShop (1.4.6.2) because I was having tax problems with an older version. I didn't help at all.

 

I have set my tax rules, enabled taxes in my cart, and have indicated the tax to be calculted for each of my products. Makes no difference. No tax what so ever shows up in the cart. The word "Tax" doesn't even show up. At least in the older version, Presta pretended to calculate the tax; even though it was wrong.

 

See image of cart:

 

cart-noTax.jpg

Link to comment
Share on other sites

This will fix the tax line not showing in your cart lines 64-67 of blockcart.php.

 

Sorry I should have read your original post better I was thinking your taxes were not calculating correctly.

 

 

original

else

$taxCalculationMethod = Group::getDefaultPriceDisplayMethod();

$useTax = !($taxCalculationMethod == PS_TAX_EXC);

 

New

else

$taxCalculationMethod = Group::getDefaultPriceDisplayMethod();

$useTax = true; /*!($taxCalculationMethod == PS_TAX_EXC)*/;

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