Re: Zones Table Rate Shipping Module
Hi Geofftech,
Yes, thank you!! That makes much more sense now after following your instructions while being in the Admin->Locations/Taxes->Zone Definitions
I was going to ask you about other shipping methods, but I think I may have gotten my answer in another thread I started asking a questions related to more than one shipping method when using Zones.
http://www.zen-cart.com/forum/showth...232#post683232
Thanks so much. That really helped!
Re: Zones Table Rate Shipping Module
Hi everyone,
I have this shipping module and i have a problem.
I have two zones.
My table rate is:
Zone Table Rate 1: 5:6.51,10:7.32,20:10.25,40:15.25
Zone Table Rate 2: 10:4.22,50:8.48,100:14.15,150:19.82,500:47.03,1000:76.75,2000:131.48
When a customer has cart content of say 50kg, basically only Zones Table Rate 2 should be displayed but both mods are showing and the Zone Table Rate 1 mod is displaying $0.00 for shipping amount and it allows the customer to select it and check-out with free shipping.
How do I get the Zones Table Rate 1 dont display when the carts total weight exceeds >40kg?
Thanks :)
Re: Zones Table Rate Shipping Module
Quote:
When a customer has cart content of say 50kg, basically only Zones Table Rate 2 should be displayed
I dont think it makes any claim to work in that way :(
One of the FAQs says to make the top level in the table an outrageous amount so it wont be selected.
10:10,15:15,20:20,999:1000
Sorry
Re: Zones Table Rate Shipping Module
I've installed the extention as well (on 1.3.8). Works ok, with one problem: if you add zones AFTER the module is installed, you get all kinds error messages. So I added the following code just after the number of zones is determined:
Code:
// make sure all the zones are available in the configuration table
for ($i = 1; $i <= $this->num_zones; $i++)
{
$check = $db->Execute("select * from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_SHIPPING_ZONETABLE_ZONE_" . $i . "'");
if ($check->EOF)
{
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone " . $i . "', 'MODULE_SHIPPING_ZONETABLE_ZONE_" . $i . "', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes(', now())");
define('MODULE_SHIPPING_ZONETABLE_ZONE_' . $i, '0');
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Zone " . $i ." Shipping Table', 'MODULE_SHIPPING_ZONETABLE_COST_" . $i ."', '25:8.50,50:5.50,10000:0.00', 'The shipping cost is based on the total cost or weight of items or count of the items. Example: 25:8.50,50:5.50,etc.. Up to 25 charge 8.50, from there to 50 charge 5.50, etc', '6', '0', 'zen_cfg_textarea(', now())");
define('MODULE_SHIPPING_ZONETABLE_COST_' . $i, '25:8.50,50:5.50,10000:0.00');
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Zone " . $i ." Handling Fee', 'MODULE_SHIPPING_ZONETABLE_HANDLING_" . $i ."', '0', 'Handling fee for this shipping method.', '6', '0', now())");
define('MODULE_SHIPPING_ZONETABLE_HANDLING_' . $i, '0');
}
}
Re: Zones Table Rate Shipping Module
Quote:
Originally Posted by
surf7.net
If you have multiple shipping zones and you are not using this module, you cannot set table rate for more than one zone because the current built in table rate module is limited to only one zone.
I have modified the built in table rate module so that I can set separate table rate for each zones. Enjoy!
HI
Can you tell me do i install these files to the admin area or the regular area?
Regards
Meir R.
Re: Zones Table Rate Shipping Module
Hi
How do i get the module to allow me to define more than 3 zones?
i really need it to do 5...
i have 5 zones created in zone definitions.
Re: Zones Table Rate Shipping Module
Quote:
Originally Posted by
mrrcomp
Can you tell me do i install these files to the admin area or the regular area?
Regular
Re: Zones Table Rate Shipping Module
Quote:
Originally Posted by
braiden1
How do i get the module to allow me to define more than 3 zones?
If you first define the zones, that is: create them and make sure the indicator in the list becomes green by a.o. specifying a TAX.
Then uninstall the payment method in the admin panel and then reinstall it, all the zones will be available. My code (for me) allowed me to skip the uninstall/reinstall step.
Re: Zones Table Rate Shipping Module
Hi,
may i know how so i install it?
i';m using ver 1.3.8
my site is w w w . o - b e a n . c o m
i need something like this:
shipping in Singapore ONLY (for now)
State A to E belongs to Zone 1. Shipping is free is sales is above $50, if not $10 shipping charges apply
State F to J belongs to Zone 2. Shipping is free if sales is ablve $100....
State K to P belongs to Zone 3. Shipping is free if sales is above $100 (same as zone 2 but have to seperate due to the covered area is diff)....
is this module suitable for me?
thank you~
Re: Zones Table Rate Shipping Module
Well, I'm confused. I'm trying to set it up so that my cart will charge extra for shipments to Canada, Puerto Rico, Alaska, and Hawaii yet not sell to customers anywhere else in the world. I've installed this mod but I guess I don't understand it. I'm only seeing one selectable shipping zone right now and it's my home state of MS. Can somebody throw me a bone please as to how I might accomplish this? Thanks.
Ian