Re: Zones Table Rate Shipping Module
Sure, I think it is making sense now :smile:
Its all about asking the right question.. Your question in thread #254 is what I actually wanted but was not able to put in those words.
Now India has 28 states, which I need to bundle under these four zones :smile:
I have decided to do it in the morning.
Thanks Again !
Re: Zones Table Rate Shipping Module
Let us know how things work out for you ...
Re: Zones Table Rate Shipping Module
I am so glad to see all my zones in the drop box! :clap:
I am going to configure them now.
Thanks !
Re: Zones Table Rate Shipping Module
You are most welcome ... glad to hear things are coming together for you ... :smile:
Re: Zones Table Rate Shipping Module
Hi,
Im using 1.5.1 and this shipping module. I have duplicated it successfully to do one weight based and one item based.
I have a need to be able to disable this shipping module over a certain weight as over this weight, we will begin to price by item. This threshold needs to at around 150. I have tried some of the hacks suggested for UPS and USPS modules on varying lines within the file, but to no avail. Can anyone give me a steer if they have managed something similar?
Thanks
Re: Zones Table Rate Shipping Module
You can customize the file:
/includes/modules/shipping/zonetable.php
(or which ever shipping module you are trying to turn off)
with the code in RED for:
Code:
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) {
Re: Zones Table Rate Shipping Module
Re: Zones Table Rate Shipping Module
You are most welcome, thanks for the update that this can work for you ... :smile:
1 Attachment(s)
Re: Zones Table Rate Shipping Module
Hi Ajeh,
If you scroll up this page, you would recollect that you had helped me to set up my zones. Other things came up, so I could not set up the zone table after that. Now I have upgraded to 1.5.1
I have entered all information as per my zones and rates. But the icon is yellow. And the rates are also not being shown in shipping estimator.
Another weird thing is that if I put sort order as '4', I get a duplicate sort order warning; though as you can see in the image, I have not put '4' as sort order Sort order for anything elsed. '1' is not giving that warning.
please guide me again. Attachment 13660
Re: Zones Table Rate Shipping Module
Yellow is okay and on the Sort Order just make sure you do not get the duplicate warning ...
When you go to Locations / Taxes ... Zones ... under the Country for India, what Zones do you see?