Page 1 of 1

Free Shipping not work

Posted: Thu Dec 17, 2015 4:11 am
by twd247
Hi All

I have set the free shipping moduled so any order over £69.99 will be free shipping, but the option still comes up when the order is under 69.99 and WORKING.....

See picture i have attached.


Thank you
Mark

Re: Free Shipping not work

Posted: Thu Dec 17, 2015 4:42 am
by daniGo
This is how it works. Other shipping options are always active, even when free is available. If you want to have active only free shipping, then you need to change the code in shipping method files.

Re: Free Shipping not work

Posted: Thu Dec 17, 2015 5:20 am
by twd247
daniGo wrote:This is how it works. Other shipping options are always active, even when free is available. If you want to have active only free shipping, then you need to change the code in shipping method files.
Hi DaniGo

so i f i set the free shipping for order over £70.00. but the order only come to £15.00 you can still checkout with free shipping!!!!!

you can try a test order if you went.

Thank you
mark

Re: Free Shipping not work

Posted: Thu Dec 17, 2015 6:07 am
by daniGo
No, the order should be over £70.00.

This the code which deactivate free shipping method:

Code: Select all

if ($this->cart->getSubTotal() < $this->config->get('free_total')) {
	$status = false;
}

Re: Free Shipping not work

Posted: Thu Dec 17, 2015 6:32 am
by twd247
daniGo wrote:No, the order should be over £70.00.

This the code which deactivate free shipping method:

Code: Select all

if ($this->cart->getSubTotal() < $this->config->get('free_total')) {
	$status = false;
}
Ok Thank you where would i find this bit of code

Cheers

Re: Free Shipping not work

Posted: Thu Dec 17, 2015 6:48 am
by twd247
done it cheers