smartamaten Posted July 10, 2013 Share Posted July 10, 2013 When a new customer adds a product to the cart, the shipping is shown without tax (although it says tax is included). As soon as the customer registers or logs in the correct shipping cost is displayed (including tax). How do I resolve this? I'm using version 1.5.2.0. Please help! / Åsa Link to comment Share on other sites More sharing options...
tamahome Posted November 8, 2013 Share Posted November 8, 2013 I have the same probema in my website. Anyone has a solution for that?? Thanks! Link to comment Share on other sites More sharing options...
grupaperun Posted January 3, 2014 Share Posted January 3, 2014 After few hours of searching I have found solution that has worked for me on Presta 1.5.2. In classes/Cart.php find: // Select carrier tax if ($use_tax && !Tax::excludeTaxeOption()) $carrier_tax = $carrier->getTaxesRate(new Address((int)$address_id)); and replace with: // Select carrier tax if ($use_tax && !Tax::excludeTaxeOption()) { $address = Address::initialize((int)$address_id); $carrier_tax = $carrier->getTaxesRate($address); } After this change the shipping cost for unlogged is shown with tax included. 1 Link to comment Share on other sites More sharing options...
smartamaten Posted January 13, 2014 Author Share Posted January 13, 2014 Yay! It seems to work! Thanks!!! / Åsa Link to comment Share on other sites More sharing options...
Recommended Posts