Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 57
  1. #11
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,673
    Plugin Contributions
    6

    Default Re: USPS Web Tools Price Change Updates 2012

    It will be released as soon as USPS changes the server so that we can confirm that it is working properly ...

    The old one will still work for most shipping methods, there are just a few new ones added ...
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  2. #12
    Join Date
    Jun 2010
    Location
    DeBary, Florida USA
    Posts
    176
    Plugin Contributions
    0

    Default Re: USPS Web Tools Price Change Updates 2012

    I just installed the new module. I am trying to select Priority Module Flat Rate as an option. I am able to select Priority Mail, but not force Flat Rate. Most of the time it is the same, but when shipping in my state, the customer sees a lower price that requires me to provide the shipping box. Is there a way to force Flat Rate?

  3. #13
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,673
    Plugin Contributions
    6

    Default Re: USPS Web Tools Price Change Updates 2012

    Did you try this section of code:
    Code:
              //PRIORITY MAIL OPTIONS
              if ($key == 'PRIORITY'){
                $this->container = ''; // Blank, Flate Rate Envelope, or Flat Rate Box // Sm Flat Rate Box, Md Flat Rate Box and Lg Flat Rate Box
    
              }
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  4. #14
    Join Date
    Jun 2010
    Location
    DeBary, Florida USA
    Posts
    176
    Plugin Contributions
    0

    Default Re: USPS Web Tools Price Change Updates 2012

    Thanks Ajeh. That was what I was looking for.

    You guys did a great job on the 1.5.0 and the add-ons. Expect a donation before the end of the month.

  5. #15
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,673
    Plugin Contributions
    6

    Default Re: USPS Web Tools Price Change Updates 2012

    You are most welcome ... thanks for the update that this is working for you ...
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  6. #16
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    357
    Plugin Contributions
    0

    Default Re: USPS Web Tools Price Change Updates 2012

    Quote Originally Posted by Ajeh View Post
    Did you try this section of code:
    Code:
              //PRIORITY MAIL OPTIONS
              if ($key == 'PRIORITY'){
                $this->container = ''; // Blank, Flate Rate Envelope, or Flat Rate Box // Sm Flat Rate Box, Md Flat Rate Box and Lg Flat Rate Box
    
              }
    May I ask where this is located at or where I need to add this code? Will need to offer usps flat rates too and I'm not sure where I need to place this code or find it at.

    Thank you
    Zen Cart user all the way for online stores!

  7. #17
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,673
    Plugin Contributions
    6

    Default Re: USPS Web Tools Price Change Updates 2012

    Around line 485 in the:
    /includes/modules/shipping/usps.php

    You can change which Priority quote you are getting by changing the:
    $this->container = '';

    to one of the other settings ... choices are:
    blank as in nothing
    Sm Flat Rate Box
    Md Flat Rate Box
    Lg Flat Rate Box
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  8. #18
    Join Date
    Jun 2010
    Location
    DeBary, Florida USA
    Posts
    176
    Plugin Contributions
    0

    Default Re: USPS Web Tools Price Change Updates 2012

    Quote Originally Posted by Ajeh View Post
    Around line 485 in the:
    /includes/modules/shipping/usps.php

    You can change which Priority quote you are getting by changing the:
    $this->container = '';

    to one of the other settings ... choices are:
    blank as in nothing
    Sm Flat Rate Box
    Md Flat Rate Box
    Lg Flat Rate Box
    As a relative newbee, and with all due respect to Ajeh, let me add one more point: This is determining what price is presented to your customer when you check the "Priority Mail" box on that menu on the right when editing USPS. If you want it to be just Standard Priority Mail, just leave it the way it is. If you want the price for a Sm Flat Rate Box to be presented, you would put Sm Flat Rate Box between the single quotes above, so it would read $this->container = 'Sm Flat Rate Box';

  9. #19
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    357
    Plugin Contributions
    0

    Default Re: USPS Web Tools Price Change Updates 2012

    Thanks, is there a way to offer all of the services based on weight of the box so usps will know which one to show?

    In admin side, I only see the following to choose from:

    EXPRESS
    PRIORITY
    FIRST CLASS
    PARCEL
    MEDIA
    LIBRARY

    I do not see any flat rates there. How can I add this to the admin side as well so it will be easy for client to change?
    Thank you for all of your help. I really appreciate it!
    Zen Cart user all the way for online stores!

  10. #20
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    357
    Plugin Contributions
    0

    Default Re: USPS Web Tools Price Change Updates 2012

    Quote Originally Posted by SPembleton View Post
    As a relative newbee, and with all due respect to Ajeh, let me add one more point: This is determining what price is presented to your customer when you check the "Priority Mail" box on that menu on the right when editing USPS. If you want it to be just Standard Priority Mail, just leave it the way it is. If you want the price for a Sm Flat Rate Box to be presented, you would put Sm Flat Rate Box between the single quotes above, so it would read $this->container = 'Sm Flat Rate Box';
    Ok. So I cannot add all flat rates and have usps automatically determine which flat rate to choose from? It should show the correct box size (small, med or large flat rate) according to weight in cart...or at least that sounds logical to me. :)
    Zen Cart user all the way for online stores!

 

 
Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. v139h USPS January 22, 2012
    By joejoejoe in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 24 Jan 2012, 04:25 AM
  2. USPS January 22, 2012
    By Ajeh in forum Zen Cart Release Announcements
    Replies: 0
    Last Post: 22 Jan 2012, 05:15 AM
  3. How do I change USPS parcel post price vs.1.3.9a?
    By Fred E. Smith in forum General Questions
    Replies: 1
    Last Post: 15 May 2010, 05:27 AM
  4. USPS Web Tools ???
    By vedavyas govardhanam in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 29 Jan 2010, 03:33 PM
  5. Replies: 7
    Last Post: 7 May 2007, 03:50 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
  •