Thanks for the update that everything is now working for you ...![]()
Thanks for the update that everything is now working 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: v1.5.5]
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!
Hi Gang!
Please let me know if this table rates applies in the case where I would like to offer three separate shipping options (via DHL, FedEx and UPS).
Or should I rather use Zone Rates?
thanks
Thanks!
Hi All, I have a question for you. Bear in in I am very new to Zen Cart so there may be holes in my question, so here goes…
I wondered if it is possible to some how bring in all the post codes in Canada into the admin area (I'm not sure how to do that), then use zone definitions to group selections of post codes together into shipping groups, then use Multiple Zones to apply a pricing structure to the various different shipping groups, and have all that recognised in the cart. I am only shipping to Canadian customers so those are the only post codes I need recognisable in Zen. Thanks heaps.
All I can say is great add on .. Works just how I want it ,was struggling with the built in ones
thanks
A search of the plugin results in this one:
http://www.zen-cart.com/downloads.php?do=file&id=478
See if that works better 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: v1.5.5]
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!
Thanks Ajeh
Hello,
I have been messing around with cloning this shipping module and finally got it working. I have a slight issue with one part of it though. I cloned the module to offer International customers a first class shipping option for orders up to $50.00. Everything works great except when the order is over $50.00, I need the shipping option not to be displayed and only display the USPS Priority mail option.
I did find one of AJEH's posts about disabling modules over a certain weight but I haven't got weights added to our store yet because we are dealing with approximately 15,000 parts at the moment.
Here is the code snippet that I found in Ajeh's Post #266:
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_ZONETABLE_STATUS == 'True') ? true : false);
}
// bof: disable for weight >= 150
if (!IS_ADMIN_FLAG && $_SESSION['cart']->show_weight() >= 150) {
$this->enabled = false;
}
// eof: disable for weight >= 150
if ($this->enabled == true) {
Can you make any suggestions on how to modify the above code to work with cost rather than weight? I need it to be disabled for any order over $50.00.
Thanks in advance for any help you can offer.
$_SESSION['cart']->show_total() deals with the total in the shopping cart ...
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: v1.5.5]
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! That did the trick. I appreciate your time and your response.
Bookmarks