Go to the Configuration ... Shipping/Packaging ... and set the Maximum weight to: 20000 and set the Tare Rates to: 0:0 ...
Go to the Configuration ... Shipping/Packaging ... and set the Maximum weight to: 20000 and set the Tare Rates to: 0: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!
set the Tare Rates to: 0:0 ...
yeh..done this..thank you very much!!!!!!!!
Module is working well but I am having one weird issue.
We allow pickup walk-in as a shipping option. Since installing zone modules, all of our invoices and orders say pickup for shipping even though they selected the zones module shipping, it also shows the correct shipping rate just has pickup for the shipping name.
Has anyone else ran into this problem? Looking for a fix.
Hi All,
How do I add extra Zones. I thought it added new zones based on zone definitions, but I added an extra zone definition and still have just 5 zones. I reinstalled the module, but to no avail. You help's greatly appreciated. :-)
I'm curious. Even though this addon seems to have the capabilities I need, why is it even considered viable when it has been 5 years since it was last updated? Does it even work with 1.5.x?
This was updated in July, 2012 ...
Are you sure you are looking at:
http://www.zen-cart.com/downloads.php?do=file&id=720
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!
I have my zones all configured correctly for taxes and for shipping, but I have one more issue I'd like to resolve. Not really so much an issue, but more a cause for confusion to the end user. On step 2 of 3 payment information I want to change the wording to something more easily understood WITHOUT changing the names of the zones as defined in Zencart. Example:
Your Total
$549.95
Sub-Total:$16.95
Zones Table Rate (Canada GST only - ship zones 1):$28.35
5.0% GST + 5.0% GST on shipping:$595.25
Total:$595.25
The description in red, is there a way to configure the module to display a different field and drop the Zones Table Rate prefix? I mean, the buyer doesn't need to scratch their head over this, I just want it to say shipping! :) TIA!
I have successfully duplicated the zonetables module so i now have zonetables and zonetables2. Works OK in 1.5.1.
However, I would like to disable zonetables1 when the weight is less than .5. How would I go about doing this?
I found the code below in another thread, but not sure if this is what to use or where to put it in the zonetables.php file.
Thanks for any tips!
Try using this to test the cart for weight:
Code:
global $cart;
// disable if product weight is greater than .5 in cart
if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_weight() > .5) {
$this->enabled = false;
} else {
$this->enabled = true;
}
Tim
That would go under the code:
Code:// disable only when entire cart is free shipping if (zen_get_shipping_enabled($this->code)) { $this->enabled = ((MODULE_SHIPPING_ZONES_STATUS == 'True') ? true : false); } // disable if product weight is less than .5 in cart if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_weight() < .5) { $this->enabled = false; }
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!