Results 1 to 8 of 8

Hybrid View

  1. #1
    Join Date
    Jun 2011
    Posts
    65
    Plugin Contributions
    0

    Default Set up International Shipping ONLY if below a certain dollar amount?

    Hi! I am not sure if this is possible but how can I set up the shipping modules so that it only allows international orders if BELOW a certain dollar amount?

    I only want international shipping allowed if the order price is below a certain amount, otherwise, over that amount only US customers can purchase.

    I currently use the Shipping Table module so that below a certain amount it's $xx and above a certain amount it's $xx. It then applies the Shipping Zone to both price breaks...but I can't designate the Shipping Zone for the below and the above amounts separately.

    Is there another module or way I can set it up so that all shipping zones can purchase if below a dollar amount?

    I hope I explained this okay?

    Thank you!!!!

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

    Default Re: Set up International Shipping ONLY if below a certain dollar amount?

    Do both National and International have the same prices?

    Is National ALL of the US or just US 48 plus DC?
    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!]
    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. #3
    Join Date
    Jun 2011
    Posts
    65
    Plugin Contributions
    0

    Default Re: Set up International Shipping ONLY if below a certain dollar amount?

    Hi Ajeh!

    Yes, the national and international shipping cost will be the same flat rate. National is all 50 states.


    Thanks!!!

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

    Default Re: Set up International Shipping ONLY if below a certain dollar amount?

    You could define a Zone for the US 50 States plus DC and add that to Table Rate table shipping module ...

    Then, Use the Zone Rates zones shipping module and define the US for the:
    Skip Countries, use a comma separated list of the two character ISO country codes
    Next, set Zone 1 for 00 which is for everyone else not defined (as in the Rest of the World) ...

    Now, you need to customize the code for:
    /includes/modules/shipping/zones.php

    and add the code in RED:
    Code:
          // disable only when entire cart is free shipping
          if (zen_get_shipping_enabled($this->code)) {
            $this->enabled = ((MODULE_SHIPPING_ZONES_STATUS == 'True') ? true : false);
          }
    
    // bof: turn off for orders > $50.00
                if (!IS_ADMIN_FLAG) {
                $chk_total_amount = $_SESSION['cart']->show_total() - $_SESSION['cart']->free_shipping_prices();
                if ($chk_total_amount > 50.00) {
                    $this->enabled = false;
                }
                }
    // eof: turn off for orders > $50.00
    
          // CUSTOMIZE THIS SETTING FOR THE NUMBER OF ZONES NEEDED
    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!]
    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!

  5. #5
    Join Date
    Jun 2011
    Posts
    65
    Plugin Contributions
    0

    Default Re: Set up International Shipping ONLY if below a certain dollar amount?

    Thank you, thank you, thank you so very much. I truly appreciate your time and help - you are genius!

    I have set it all up as you have described above. Now I will have to wait for an international buyer to purchase to test that it works!! (unless you know of a way to test it otherwise?).

    I will report back once I've confirmed it worked well so others will know.

    Thank you again!!!!

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

    Default Re: Set up International Shipping ONLY if below a certain dollar amount?

    Best test is to always have a Test Customer account and try various addresses yourself to ensure things are working rather than wait for a live customer ...
    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!]
    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!

 

 

Similar Threads

  1. How to set up Free Shipping if BELOW certain amount
    By dat311 in forum Built-in Shipping and Payment Modules
    Replies: 11
    Last Post: 25 Dec 2011, 03:47 PM
  2. Force Express Mail International on high dollar amount orders
    By dharma in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 5 Jan 2010, 04:13 PM
  3. Free TShirt with certain dollar amount
    By creativeone in forum General Questions
    Replies: 3
    Last Post: 9 Jul 2009, 10:11 PM
  4. Can you set a minimum dollar amount that has to be ordered
    By inklingsolutions in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 2 Apr 2009, 11:24 PM
  5. Can I set up for free shipping over a certain amount?
    By pepelepe in forum Setting Up Specials and SaleMaker
    Replies: 1
    Last Post: 1 Jul 2008, 08:18 AM

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