Page 1 of 5 123 ... LastLast
Results 1 to 10 of 49
  1. #1
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default BETA USPS and UPS

    ** BETA ONLY ** BETA ONLY ** BETA ONLY **


    One of the problems with USPS and UPS is obtaining quotes for US Islands and Territories regardless of how the Customer sets up their Shipping address.

    For Example, a Customer may setup Shipping for Guam as
    Country: United States
    State: Guam
    City: Yigo
    Zip Code: 96929

    Or, set it up as:
    Country: Guam
    State: Yigo
    City: Yigo
    Zip Code: 96929

    This will cause issues where only one or the other shipping module will work.

    Another issue is that the 5 digits allowed by USPS changes based on National and Internation shipping and forces some shops to edit the USPS shipping module to manually change the code to address this issue. This is now built into the Beta version.

    Now, these two modules also allow for separate Handling Fees for National and International Orders, again these are based on the translation of Countries and States that conflict on shipping that is part of the United States.

    It would be helpful if some of the more adventurous members of our forum tested these two modules and tried to break them.

    Please test these modules and report your results and if you have any issues with them as a guest or customer on your sites.

    Of particular interest is testing for shipping to:
    Guam
    Puerto Rico
    Northern Mariana Islands
    Virgin Islands US
    American Samoa
    Micronesia, Federated States of
    Federated States of Micronesia
    Palau

    as either the Country or as the State when the Country is the United States.

    Any other issues would also be appreciated.

    Thank you for your help in testing these BETA versions of the UPS and USPS shipping modules.
    Attached Files Attached Files
    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. #2

    Default Re: BETA USPS and UPS

    Hi Ajeh,

    Newbie here... see this post is dated last March. Is the mod still in beta testing? Update? Based on my questions just posted to this sub-forum today, looks like it could solve a couple of my problems.

    THANKS!
    Scott

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

    Default Re: BETA USPS and UPS

    I would start with the current UPS that comes with v1.3.9h and get the current USPS January 2, 2011 C version from post #26:
    http://www.zen-cart.com/forum/showthread.php?t=171314

    Make sure that those are working before you try using a beta version ...
    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. #4
    Join Date
    Jun 2011
    Location
    California
    Posts
    63
    Plugin Contributions
    0

    Default Re: BETA USPS and UPS

    This qustion is not about the beta. I need to know how to set the shipping price sort order to show the lowest price first.

    I thought I'ed ask Ajeh becase this user knows everything about zen-cart.


    Thanks for any help

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

    Default Re: BETA USPS and UPS

    To sort by price from low to hig, in the usps.php shipping module, find the line:
    Code:
        return ((sizeof($rates) > 0) ? $rates : false);
    and change to:
    Code:
        $result = array_reverse($rates);
        $rates = $result;
        return ((sizeof($rates) > 0) ? $rates : false);
    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. #6
    Join Date
    Jun 2011
    Location
    California
    Posts
    63
    Plugin Contributions
    0

    Default Re: BETA USPS and UPS

    Quote Originally Posted by Ajeh View Post
    To sort by price from low to hig, in the usps.php shipping module, find the line:
    Code:
        return ((sizeof($rates) > 0) ? $rates : false);
    and change to:
    Code:
        $result = array_reverse($rates);
        $rates = $result;
        return ((sizeof($rates) > 0) ? $rates : false);
    Thank you for your help, That works, A OK.

    Sorry to be a bug, but
    how can I do the same for the UPS shipping module. not sure what array to change?

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

    Default Re: BETA USPS and UPS

    You can try changing in the ups.php the line:
    Code:
        return $returnval;
    to read:
    Code:
        $result = array_reverse($returnval);
        $returnval = $result;
        return $returnval;
    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!

  8. #8
    Join Date
    Jun 2011
    Location
    California
    Posts
    63
    Plugin Contributions
    0

    Default Re: BETA USPS and UPS

    Quote Originally Posted by Ajeh View Post
    You can try changing in the ups.php the line:
    Code:
        return $returnval;
    to read:
    Code:
        $result = array_reverse($returnval);
        $returnval = $result;
        return $returnval;
    Thanks this works A OK.
    Thank you Ajeh .I’ve seen you help allot of zen users, you have all the right answers. That’s why I turned to you, Thanks again.

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

    Default Re: BETA USPS and UPS

    You are most welcome ... thanks for the update that this is working for you ... and remember us when you are rich and famous!
    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!

  10. #10
    Join Date
    Jun 2011
    Location
    California
    Posts
    63
    Plugin Contributions
    0

    Default Re: BETA USPS and UPS

    When will the USPS and UPS be out of Beta?

    And or is any users testing this update. If not maybe you should
    bump this thread to the top of the forum to get more testers.

    I will do some testing of my own.

    Thank you Ajeh for the time you put in on this module

 

 
Page 1 of 5 123 ... LastLast

Similar Threads

  1. How do I get UPS and USPS quotes in Zen Cart to match USPS/UPS rates in my PayPal?
    By chachab in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 22 May 2008, 06:13 AM
  2. UPS and USPS rates per weight and size
    By rjspomer in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 16 May 2008, 01:58 PM
  3. USPS and UPS insurance
    By saddlebred in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 21 Nov 2006, 04:08 AM

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