Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Add UPS for International free Shipping

    If you are already using Free Shipping Options freeoptions for another Zone Definition and amount, you could clone it for your International Shipping ...
    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!

  2. #12
    Join Date
    Oct 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: Add UPS for International free Shipping

    Quote Originally Posted by Ajeh View Post
    If you are already using Free Shipping Options freeoptions for another Zone Definition and amount, you could clone it for your International Shipping ...
    Could you please suggest how to clone this? I'm a PHP developer, but newbie to Zencart.

    Please help me to sort this.

    Thanks,
    Aditya

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

    Default Re: Add UPS for International free Shipping

    Do a search on:
    clone flat
    clone item

    and you should find a number of examples on how to clone a shipping module ...
    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!

  4. #14
    Join Date
    Oct 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: Add UPS for International free Shipping

    Quote Originally Posted by Ajeh View Post
    Do a search on:
    clone flat
    clone item

    and you should find a number of examples on how to clone a shipping module ...
    Hello Ajeh,

    I need to clone freeoptions right? as I need to have free shipping options on >=15 for United States and free shipping options on >=100 for International.

    So, I have cloned
    includes/languages/english/modules/shipping/freeoptions.php to freeoptionsus.php and freeoptionsint.php

    and

    includes/modules/shipping/freeoptions.php to freeoptionsus.php and freeoptionsint.php

    but it seems it is appearing only in Modules > Shipping
    Free Shipping Options freeoptionsint only. The other thing is not visible.

    Am I missing anything? I have followed this thread "http://www.zen-cart.com/forum/showthread.php?t=77410"

    Thanks,
    Aditya

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

    Default Re: Add UPS for International free Shipping

    Do you have a screen shot you can show of the Modules ... Shipping ... if you do not see them all listed then it sounds like you have errors on cloning them ...

    Peek in the /cache and see if you have any debug logs ...
    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. #16
    Join Date
    Oct 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: Add UPS for International free Shipping

    Quote Originally Posted by Ajeh View Post
    Do you have a screen shot you can show of the Modules ... Shipping ... if you do not see them all listed then it sounds like you have errors on cloning them ...

    Peek in the /cache and see if you have any debug logs ...
    Hello Ajeh,

    This worked for me.
    I have cloned
    includes/languages/english/modules/shipping/freeoptions.php to freeoptionsus.php and freeoptionsint.php
    and
    includes/modules/shipping/freeoptions.php to freeoptionsus.php and freeoptionsint.php,

    I have cleared the browsing data and its working fine for me now.

    One more question. I have enabled flat rate module for orders less than 15 in US zone.

    I have cloned flat.php file to flatint.php to enable flat rate for international orders for orders less than 100.

    Now the problem is that it shows flat rate option for international orders less than 100 without any issues, but for US orders, it is showing two flat rates for orders more than 15 in US zone. How do I make to appear only one flat rate for US Zone?

    Below are the cases of issues followed by the settings

    Zone amount flatrate
    US <15 falt + flatInt
    US >15 falt + flatInt + freeoptionsus
    US >100 falt + flatInt + freeoptionsus + freeoptionsint


    Int <15 flatInt
    Int <100 flatInt
    Int >100 flatInt + freeoptionsint

    Here are my settings:
    **************************************************
    Flat Rate

    Enable Flat Shipping True
    Shipping Cost 5.00
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone United States
    Sort Order 2
    ************************************************
    flat Rate INT

    Enable Flat Shipping True
    Shipping Cost 17.00
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone --none--
    Sort Order 8
    **************************************************
    freeoptionsint

    Enable Free Options Shipping True
    Shipping Cost 0.00
    Handling Fee 0
    Total >= 100.00
    Total <=
    Weight >=
    Weight <=
    Item Count >=
    Item Count <=
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone --none--
    Sort Order 3
    **************************************************
    freeoptionsus

    Enable Free Options Shipping True
    Shipping Cost 0.00
    Handling Fee 0
    Total >= 15.00
    Total <=
    Weight >=
    Weight <=
    Item Count >=
    Item Count <=
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone United States
    Sort Order 7
    **************************************************

  7. #17
    Join Date
    Oct 2011
    Posts
    36
    Plugin Contributions
    0

    red flag Re: Add UPS for International free Shipping

    Quote Originally Posted by aditya369 View Post
    Hello Ajeh,

    This worked for me.
    I have cloned
    includes/languages/english/modules/shipping/freeoptions.php to freeoptionsus.php and freeoptionsint.php
    and
    includes/modules/shipping/freeoptions.php to freeoptionsus.php and freeoptionsint.php,

    I have cleared the browsing data and its working fine for me now.

    One more question. I have enabled flat rate module for orders less than 15 in US zone.

    I have cloned flat.php file to flatint.php to enable flat rate for international orders for orders less than 100.

    Now the problem is that it shows flat rate option for international orders less than 100 without any issues, but for US orders, it is showing two flat rates for orders more than 15 in US zone. How do I make to appear only one flat rate for US Zone?



    Below are the cases of issues followed by the settings

    Zone amount flatrate
    US <15 falt + flatInt
    US >15 falt + flatInt + freeoptionsus
    US >100 falt + flatInt + freeoptionsus + freeoptionsint


    Int <15 flatInt
    Int <100 flatInt
    Int >100 flatInt + freeoptionsint

    Here are my settings:
    **************************************************
    Flat Rate

    Enable Flat Shipping True
    Shipping Cost 5.00
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone United States
    Sort Order 2
    ************************************************
    flat Rate INT

    Enable Flat Shipping True
    Shipping Cost 17.00
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone --none--
    Sort Order 8
    **************************************************
    freeoptionsint

    Enable Free Options Shipping True
    Shipping Cost 0.00
    Handling Fee 0
    Total >= 100.00
    Total <=
    Weight >=
    Weight <=
    Item Count >=
    Item Count <=
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone --none--
    Sort Order 3
    **************************************************
    freeoptionsus

    Enable Free Options Shipping True
    Shipping Cost 0.00
    Handling Fee 0
    Total >= 15.00
    Total <=
    Weight >=
    Weight <=
    Item Count >=
    Item Count <=
    Tax Class --none--
    Tax Basis Shipping
    Shipping Zone United States
    Sort Order 7
    **************************************************
    I have used http://www.zen-cart.com/forum/showthread.php?t=115687 as reference .

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

    Default Re: Add UPS for International free Shipping

    Your International Shipping modules do not appear to have Zones on them ... wouldn't you need Zones to ensure only International can use them?
    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!

  9. #19
    Join Date
    Oct 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: Add UPS for International free Shipping

    Quote Originally Posted by Ajeh View Post
    Your International Shipping modules do not appear to have Zones on them ... wouldn't you need Zones to ensure only International can use them?
    Hi Ajeh,
    Shipping Zone is showing only the below options. I am assuming that "Shipping Zone --none--" rest of the world! am I assuming wrong? shipping zone in all my files show as below. Please suggest.

    Shipping Zone
    --none--
    California
    United States

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

    Default Re: Add UPS for International free Shipping

    Shipping Zone --none-- means Everyone ...

    If you want them only for International and not for the United States, then you need to build a Zone Definition with the DETAILS setup for anything not in your Zone Definition for the United States DETAILS ...

    You might want to look at the tutorials/FAQ for the Zones and examples on building them ...
    https://www.zen-cart.com/tutorials/i...hp?article=409
    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!

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v154 Enable UPS ground shipping only for International, Alaska, Hawaii.
    By Patrick Vincent in forum Built-in Shipping and Payment Modules
    Replies: 12
    Last Post: 10 Dec 2015, 09:56 PM
  2. Free shipping for us customers/international shipping
    By sim8729 in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 25 Oct 2012, 04:48 AM
  3. UPS international+free shipping options for US+table rates... is this possible?
    By simpledomaining in forum Addon Shipping Modules
    Replies: 6
    Last Post: 6 May 2012, 04:56 PM
  4. Free shipping for international orders
    By zc_tester in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 20 Feb 2008, 12:34 PM
  5. Free shipping in store home country - get in touch for International shipping
    By spiderfall in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 27 Jan 2007, 01:50 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