Results 1 to 10 of 315

Hybrid View

  1. #1
    Join Date
    Jan 2008
    Posts
    10
    Plugin Contributions
    0

    red flag Re: Zones Table Rate Shipping Module

    Hallo... I really love this add-on..just what i needed...but i have some error with this..if if use 6 zones def its ok, but when i add the 7th..i got this error n cannot add the 7th zone:


    Warning: constant() [function.constant]: Couldn't find constant MODULE_SHIPPING_ZONETABLE_ZONE_7 in /home/sloki/user/h86120/sites/masokoec.com/www/includes/modules/shipping/zonetable.php on line 82


    DO you have some solution for this ??

    TQ

  2. #2
    Join Date
    Aug 2008
    Posts
    135
    Plugin Contributions
    0

    Default Re: Zones Table Rate Shipping Module

    Can someone please explain to me how to use this module???

    How do I set up more than 1 Zone? And how do you add states instead of countries? We are primarily concerned with setting up zones for states.. Say like in the US the west coast would be zone 1, central coast would be zone 2, and east coast would be zone 3.

    Can someone please point me in the right direction?

  3. #3

    Default Re: Zones Table Rate Shipping Module

    Quote Originally Posted by Globie View Post
    Can someone please explain to me how to use this module???

    How do I set up more than 1 Zone? And how do you add states instead of countries? We are primarily concerned with setting up zones for states.. Say like in the US the west coast would be zone 1, central coast would be zone 2, and east coast would be zone 3.

    Can someone please point me in the right direction?
    Make sure you set up the zones BEFORE you install this module as it creates the templates for the number of zones that exist.

    First you need to define your "zones". In admin, create the Zones for East, Central and West coasts. Then assign to each of those zones the states that count. This will take some time.

    Second, install this module and choose the three zones that you created in the three pull down lists. Set values.

    Is that enough to get you started??

  4. #4

    Default Re: Zones Table Rate Shipping Module

    Quote Originally Posted by Globie View Post
    And how do you add states instead of countries?
    When you add a country, there is a pull down list under it that has all the states - the default setting being "all states"

    You will need to select the state you want and repeat this procedure for all the states you require in that zone.

  5. #5
    Join Date
    Aug 2008
    Posts
    135
    Plugin Contributions
    0

    Default 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!

  6. #6
    Join Date
    Feb 2009
    Posts
    1
    Plugin Contributions
    0

    Default 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 :)

  7. #7
    Join Date
    Mar 2008
    Location
    Ontario
    Posts
    39
    Plugin Contributions
    0

    Default Re: Zones Table Rate Shipping Module

    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

  8. #8
    Join Date
    Mar 2009
    Posts
    15
    Plugin Contributions
    0

    Default 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');
    			}
    		}

 

 

Similar Threads

  1. Help with Zones Table Rate module ..... Please
    By MM_Dude in forum Addon Shipping Modules
    Replies: 5
    Last Post: 7 Jul 2012, 02:37 PM
  2. Zones Table Rate Shipping Module clone
    By maclean in forum Addon Shipping Modules
    Replies: 2
    Last Post: 24 Jul 2009, 04:59 PM
  3. Problem with Zones Table Rate shipping calculation
    By AlpineAire in forum Addon Shipping Modules
    Replies: 1
    Last Post: 17 Jul 2008, 03:29 AM
  4. table rate shipping, zones, quotes
    By gsdcypher in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 27 Mar 2008, 05:00 AM
  5. Clone a shipping module or define a new shipping attribute under table rate module?
    By meeven in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 4 Sep 2007, 04:56 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg