Do you just have the Flat Rate flat and FREE SHIPPING! freeshipper installed?
Do you just have the Flat Rate flat and FREE SHIPPING! freeshipper installed?
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
They're the only ones I have on, yes.
To do this, customize the shipping module:
/includes/modules/shipping/flat.php
with the code in RED:
and the module: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); } // bof: give Free Shipping if 1 or more Always Free Shipping is in cart if (!IS_ADMIN_FLAG) { $chk_cart = $_SESSION['cart']->in_cart_check('product_is_always_free_shipping','1'); if ($chk_cart > 0) { $this->enabled = false; } } // eof: give Free Shipping if 1 or more Always Free Shipping is in cart if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_FLAT_ZONE > 0) ) {
/includes/modules/shipping/freeshipper.php
Code:if (zen_get_shipping_enabled($this->code)) { $this->enabled = ((MODULE_SHIPPING_FREESHIPPER_STATUS == 'True') ? true : false); } // bof: give Free Shipping if 1 or more Always Free Shipping is in cart if (!IS_ADMIN_FLAG) { $chk_cart = $_SESSION['cart']->in_cart_check('product_is_always_free_shipping','1'); if ($chk_cart > 0) { $this->enabled = true; } } // eof: give Free Shipping if 1 or more Always Free Shipping is in cart if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_FREESHIPPER_ZONE > 0) ) {
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Awesome - thank you!!
You are most welcome ... thanks for the update that this worked for you![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!