New Zenner
- Join Date:
- Oct 2006
- Posts:
- 29
- Plugin Contributions:
- 0
Calling a special on flat shipping?
Hello,
I was able to set free shipping for orders over $50. Now I need to disable free shipping for orders over $50 if all items purchased are on special.
To get free shipping for orders over $50, all I did was add this to /includes/modules/shipping/flat.php:
if ($order->info['subtotal'] < 50){
$this->enabled = false;
}
```I am wondering if there is a way to to say:
*
"If order over $50 and if all purchased products are not on special then enable free shipping"
*
Anyone has an idea of code I could use?
Thanks for any help!
Francois