Edit the Flat Rate flat shipping module and change:
Code:
// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);
}
to read:
Code:
// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);
}
global $cart;
if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_total() >= 75.00) {
$this->enabled = false;
}
where 75.00 is the amount to turn off the shipping module at ...
The IS_ADMIN_FLAG is used so that the module works on the Admin ...
Bookmarks