Page 5 of 16 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 157
  1. #41
    Join Date
    Oct 2008
    Location
    Midwest USA
    Posts
    71
    Plugin Contributions
    0

    Default Re: International Shipping

    Ajeh,

    You were so right! I tried very hard not to make any typos and even though you explicitly mention it in your post I still missed the following and made the typo!

    $itemintlsmall_total_count = $total_count - $_SESSION['cart']->free_shipping_items();


    I of course had free_shipping_itemintlsmalls() in each of the non working modules...

    Thank you so much again... But now I am back to my original problem... I don't think this will work for me, I need shipping based on the size of the product, there are only two sizes, and the shipping has 2 zones, USA and INTL:

    1) USA Small item $7.00 (per item)
    2) USA Large item $10.00 (per item)
    3) Not USA Small item: $20.00 (per item)
    4) Not USA Large Item $35.00 (per item)

    And I don't want the customer to have a choice (they would always choose small which is cheaper of course) but need to apply the shipping automatically to the order based on some product metric, maybe weight?

    Any ideas?

    Thanks again!

    Gary777

  2. #42
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: International Shipping

    IF your prices were proportional, you could use the Per Unit perweightunit shipping module where the products_weight is used to determine the shipping price ...

    Example:
    Small Products set weight to 7
    Large Products set weight to 10

    Then in the Per Unit perweightunit you would set the charge to 1.00 which would give:
    $1.00 x 7 x qty = $7.00 x qty
    $1.00 x 10 x qty = $10.00 x qty

    Then clone that to perweightunitint and set the charge to 2.75 which would give:
    $2.75 x 7 x qty = $19.25 x qty
    $2.75 x 10 x qty = $27.50 x qty

    But that would make your rates $19.25 and $27.50 but you could adjust the rate of 2.75 to something else to get closer to the mark ...

    Then configure the shipping module to work with your zones ...
    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!

  3. #43
    Join Date
    Oct 2008
    Location
    Midwest USA
    Posts
    71
    Plugin Contributions
    0

    Default Re: International Shipping

    Thanks Linda,

    Thanks what I figured, I was hoping there was another way...

    Have a great evening!

    Gary777

  4. #44
    Join Date
    Jul 2006
    Location
    Manchester
    Posts
    138
    Plugin Contributions
    1

    Idea or Suggestion Re: International Shipping

    Well, I hope everyone can play this game.

    So, here's my contribution - two lists, one for European Union and the rest of the World, enter your own lines for creating the zone Definition with your own numeric codes. Good for local European Traders.

    When creating the EU list, if you want a more local definition for your own country, just remove your country from the EU zone and give it a separate shipping and tax code.

    If there are any errors here let me know and I'll edit. But it looks okay from here.

    PHP Code:
    ------------------------------
    EU List
    ------------------------------
    INSERT INTO `zones_to_geo_zones` (`zone_country_id`, `zone_id`, `geo_zone_id`) VALUES (14031),
    (
    21031),
    (
    33031),
    (
    55031),
    (
    56031),
    (
    57031),
    (
    67031),
    (
    72031),
    (
    73031),
    (
    81031),
    (
    84031),
    (
    97031),
    (
    103031),
    (
    105031),
    (
    117031),
    (
    123031),
    (
    124031),
    (
    132031),
    (
    150031),
    (
    170031),
    (
    171031),
    (
    175031),
    (
    189031),
    (
    190031),
    (
    195031),
    (
    203031),
    (
    222031);

    ------------------------------
    Worldlist All countries Except EU
    ------------------------------
    INSERT INTO `zones_to_geo_zones` (`zone_country_id`, `zone_id`, `geo_zone_id`) VALUES (1030),
    (
    2030),
    (
    3030),
    (
    4030),
    (
    5030),
    (
    6030),
    (
    7030),
    (
    8030),
    (
    9030),
    (
    10030),
    (
    11030),
    (
    12030),
    (
    13030),
    (
    15030),
    (
    16030),
    (
    17030),
    (
    18030),
    (
    19030),
    (
    20030),
    (
    22030),
    (
    23030),
    (
    24030),
    (
    25030),
    (
    26030),
    (
    27030),
    (
    28030),
    (
    29030),
    (
    30030),
    (
    31030),
    (
    32030),
    (
    34030),
    (
    35030),
    (
    36030),
    (
    37030),
    (
    38030),
    (
    39030),
    (
    40030),
    (
    41030),
    (
    42030),
    (
    43030),
    (
    44030),
    (
    45030),
    (
    46030),
    (
    47030),
    (
    48030),
    (
    49030),
    (
    50030),
    (
    51030),
    (
    52030),
    (
    53030),
    (
    54030),
    (
    58030),
    (
    59030),
    (
    60030),
    (
    61030),
    (
    62030),
    (
    63030),
    (
    64030),
    (
    65030),
    (
    66030),
    (
    68030),
    (
    69030),
    (
    70030),
    (
    71030),
    (
    74030),
    (
    75030),
    (
    76030),
    (
    77030),
    (
    78030),
    (
    79030),
    (
    80030),
    (
    82030),
    (
    83030),
    (
    85030),
    (
    86030),
    (
    87030),
    (
    88030),
    (
    89030),
    (
    90030),
    (
    91030),
    (
    92030),
    (
    93030),
    (
    94030),
    (
    95030),
    (
    96030),
    (
    98030),
    (
    99030),
    (
    100030),
    (
    101030),
    (
    102030),
    (
    104030),
    (
    106030),
    (
    107030),
    (
    108030),
    (
    109030),
    (
    110030),
    (
    111030),
    (
    112030),
    (
    113030),
    (
    114030),
    (
    115030),
    (
    116030),
    (
    118030),
    (
    119030),
    (
    120030),
    (
    121030),
    (
    122030),
    (
    125030),
    (
    126030),
    (
    127030),
    (
    128030),
    (
    129030),
    (
    130030),
    (
    131030),
    (
    133030),
    (
    134030),
    (
    135030),
    (
    136030),
    (
    137030),
    (
    138030),
    (
    139030),
    (
    140030),
    (
    141030),
    (
    142030),
    (
    143030),
    (
    144030),
    (
    145030),
    (
    146030),
    (
    147030),
    (
    148030),
    (
    149030),
    (
    151030),
    (
    152030),
    (
    153030),
    (
    154030),
    (
    155030),
    (
    156030),
    (
    157030),
    (
    158030),
    (
    159030),
    (
    160030),
    (
    161030),
    (
    162030),
    (
    163030),
    (
    164030),
    (
    165030),
    (
    166030),
    (
    167030),
    (
    168030),
    (
    169030),
    (
    172030),
    (
    173030),
    (
    174030),
    (
    176030),
    (
    177030),
    (
    178030),
    (
    179030),
    (
    180030),
    (
    181030),
    (
    182030),
    (
    183030),
    (
    184030),
    (
    185030),
    (
    186030),
    (
    187030),
    (
    188030),
    (
    191030),
    (
    192030),
    (
    193030),
    (
    194030),
    (
    196030),
    (
    197030),
    (
    198030),
    (
    199030),
    (
    200030),
    (
    201030),
    (
    202030),
    (
    204030),
    (
    205030),
    (
    206030),
    (
    207030),
    (
    208030),
    (
    209030),
    (
    210030),
    (
    211030),
    (
    212030),
    (
    213030),
    (
    214030),
    (
    215030),
    (
    216030),
    (
    217030),
    (
    218030),
    (
    219030),
    (
    220030),
    (
    221030),
    (
    223030),
    (
    224030),
    (
    225030),
    (
    226030),
    (
    227030),
    (
    228030),
    (
    229030),
    (
    230030),
    (
    231030),
    (
    232030),
    (
    233030),
    (
    234030),
    (
    235030),
    (
    236030),
    (
    237030),
    (
    238030),
    (
    239030),
    (
    240030); 

  5. #45
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: International Shipping

    Thanks for the update ... these lists are very handy to have ...

    Should you get the time, building them into a contribution makes it easier for people to find them ... now wouldn't that be fun to make ...
    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!

  6. #46
    Join Date
    May 2007
    Posts
    114
    Plugin Contributions
    0

    Default Re: International Shipping

    Does anyone have an SQL for creating a 48-state US zone (no armed forces, puerto rico , hawaii, or alaska )?
    If nobody has it, i guess i'll have to make one :)

  7. #47
    Join Date
    May 2007
    Posts
    114
    Plugin Contributions
    0

    Default Re: International Shipping

    Ok. Here's my contribution.

    Continuous 48 states:
    PHP Code:

    INSERT INTO 
    `zen_geo_zones` (`geo_zone_id`, `geo_zone_name`, `geo_zone_description`, `last_modified`, `date_added`) VALUES (30'US - 48 states''Continuous 48 states'NULL'2008-11-25');

    INSERT INTO `zen_zones_to_geo_zones` (`zone_country_id`, `zone_id`, `geo_zone_id`) VALUES 
    (223,130),
    (
    223,430),
    (
    223,530),
    (
    223,1230),
    (
    223,1330),
    (
    223,1430),
    (
    223,1530),
    (
    223,1630),
    (
    223,1830),
    (
    223,1930),
    (
    223,2230),
    (
    223,2330),
    (
    223,2430),
    (
    223,2530),
    (
    223,2630),
    (
    223,2730),
    (
    223,2830),
    (
    223,2930),
    (
    223,3130),
    (
    223,3230),
    (
    223,3330),
    (
    223,3430),
    (
    223,3530),
    (
    223,3630),
    (
    223,3730),
    (
    223,3830),
    (
    223,3930),
    (
    223,4030),
    (
    223,4130),
    (
    223,4230),
    (
    223,4330),
    (
    223,4430),
    (
    223,4530),
    (
    223,4730),
    (
    223,4830),
    (
    223,4930),
    (
    223,5130),
    (
    223,5330),
    (
    223,5430),
    (
    223,5530),
    (
    223,5630),
    (
    223,5730),
    (
    223,5830),
    (
    223,5930),
    (
    223,6130),
    (
    223,6230),
    (
    223,6330),
    (
    223,6430),
    (
    223,6530); 

    If you'd like to add some , but not the rest of the US Zones, you'll need to add the following lines to the above insert statement (just what's in the parenthesis):

    (223,6, 30), AF Armed Forces Africa
    (223,7, 30), AA Armed Forces Americas
    (223,8, 30), AC Armed Forces Canada
    (223,9, 30), AE Armed Forces Europe
    (223,10, 30), AM Armed Forces Middle East
    (223,11, 30), AP Armed Forces Pacific
    (223,2, 30), AK Alaska
    (223,17, 30), FM Federated States Of Micronesia
    (223,20, 30), GU Guam
    (223,21, 30), HI Hawaii
    (223,30, 30), MH Marshall Islands
    (223,46, 30), MP Northern Mariana Islands
    (223,52, 30), PR Puerto Rico
    (223,3, 30), AS American Samoa
    (223,60, 30), VI Virgin Islands

  8. #48
    Join Date
    Mar 2007
    Posts
    14
    Plugin Contributions
    0

    Default Re: International Shipping

    In another thread I asked this question about shipping to the contiguous 48 by UPS yet onlyoffering all others US Postal.

    The answer I received was to create a zone for each.

    My question to you great folks who know all of this stuff is this:

    Of the lists posted, if I were to use the one of the 48 contiguous states for UPS only, would I somehow insert that into the UPS shipping module? If so, how would I do that?

    Then do I find a list of non 48 such as international and US territories into the US Postal module? Again, how would I do that?

    However, if I do this, will it discontnue to offer my international customers the use of UPS Expedited and such?

    Maybe what I'm wanting to do is a little too ambitious. I want to offer everyone outside of the contiguous 48 both USPS and UPS but not offer the contiguous 48 USPS rather just UPS.

    Or maybe I should get used to going to the post office.

    Thanks,

    Whips

  9. #49
    Join Date
    Jul 2006
    Location
    Manchester
    Posts
    138
    Plugin Contributions
    1

    Idea or Suggestion Re: International Shipping

    Interesting question.

    Certainly you can set up separate definition zones for the different lists you want to ship to, but the issue arises when you have a zone in two lists. I can't remember from my recent experience (been a very busy time) whether your customer will then have two shipping choices on an order, or it creates a conflict.

    I suggest try it out with just a couple of zones and a few test orders to see what happens. Then, if it works they way you wish you can take the lists on this thread or create your own.

    "Why dumb down when we can rise up?" Worldmaker / BonDevZone Store

  10. #50
    Join Date
    Dec 2008
    Location
    Tasmania. Australia
    Posts
    38
    Plugin Contributions
    0

    Default Re: International Shipping

    Hopefully I am in the right place, and asking the right question.

    I need two table rates, one for Australia, and one for the rest of the world. Basically any order up to x$ is charged at a flat rate which will depend on whether it is being shipped Australia wide, or internationally.

    The x$ figure will be different for Australia and international, but after that order amount is reached the shipping would be free.

    Example Australian order up to $750 is $20 shipping flat rate, $751+ and shipping is free. International order up to $1000 is $40 after $1001 order value international shipping is free.

    I note the sql inserts for other places earlier in this thread and hoping someone has done the same thing for Australia vs the rest of the world.

    Cheers

 

 
Page 5 of 16 FirstFirst ... 3456715 ... LastLast

Similar Threads

  1. v154 Free US shipping, Flat Rate International over $50, $5.00 Shipping under $50
    By Rick5150 in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 27 Feb 2015, 04:24 PM
  2. Replies: 16
    Last Post: 31 May 2012, 07:08 PM
  3. Replies: 15
    Last Post: 26 Nov 2010, 06:17 PM
  4. Help on site with Free shipping and Paid International shipping
    By ruriimasu in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 2 Sep 2009, 08:21 AM
  5. Different National and International Shipping & FREE SHIPPING
    By polarduality in forum Built-in Shipping and Payment Modules
    Replies: 10
    Last Post: 23 Jan 2007, 11:09 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR