Hello,
I am using 1.5.1.3 version of OPENCART.
I don't want to show tax of the product in cart before users login to the shopping cart
Shopping cart is calculating tax (based on admin store zip-code) when users add product in cart even when they are not logged in. This looks confusion.
Can you please help me this how can we correct this? How can we show only price of the product in cart until user login?
Thanks!
-J
I haven't tried this, but you should be able to keep the store from using the store location by doing the following edit:
Code: Select all
IN:
/system/library/tax.php
REPLACE:
$this->setShippingAddress($this->config->get('config_country_id'), $this->config->get('config_zone_id'));
WITH:
$this->setShippingAddress(0, 0);
AND REPLACE:
$this->setPaymentAddress($this->config->get('config_country_id'), $this->config->get('config_zone_id'));
WITH:
$this->setPaymentAddress(0, 0);
Who is online
Users browsing this forum: No registered users and 2 guests