Hi,
Is there some place in open cart where I can designate free shipping over a certain dollar amount BEFORE tax? I am having a real issue with Open Cart giving free shipping to a customer when the item is not really over $100. For example, I have items that are listing at $95, but then state tax is over $5, leaving the customer to get free shipping, when I don't want OpenCart to give them free shipping. Need help asap because this is eating into my profits!!!
Thanks!
it shouldn't be giving them free shipping on overall total but rather on subtotal
here's the code from catalog/model/shipping/free.php
As you can see it is based on subtotal
here's the code from catalog/model/shipping/free.php
Code: Select all
if ($this->cart->getSubTotal() < $this->config->get('free_total')) {
$status = false;
}
Who is online
Users browsing this forum: No registered users and 2 guests