USPS Module no longer returning values for 1st-Class Intl Lg. Env
The USPS server is only returning values for Intl Priority, not envelope or large envelope.
Only International Package will work.
Can anything be done?
[Note: remember to include site URL, ZC version, list of plugins, PHP version, etc ... read the Posting Tips shown above for information to include in your post here. And, remove this comment before actually posting!]
Re: USPS Module no longer returning values for 1st-Class Intl Lg. Env
First class international large envelope is now limited to documents only and the api call will not return any services if <ValueOfContents> is greater than zero.
https://www.usps.com/business/web-to...ease-notes.pdf
Re: USPS Module no longer returning values for 1st-Class Intl Lg. Env
Quote:
Originally Posted by
Ajeh
I understand what you are saying. I send a lot of stuff to Canada in envelopes for $3.50-$4.50 that will now be $9.50 to $15. This is going to hurt me bad. I can still print out labels with Stamps.com for the Intl Large Envelope Price.
How can I get it to make it submit the weight to USPS with a value of zero?
Thanks,
Re: USPS Module no longer returning values for 1st-Class Intl Lg. Env
You can force it by adding around line 1232:
Code:
$submission_value = ($insurable_value > $max_usps_allowed_price) ? $max_usps_allowed_price : $insurable_value;
// Force $0.00 - on Intrenational
$submission_value = 0;
Re: USPS Module no longer returning values for 1st-Class Intl Lg. Env
Quote:
Originally Posted by
Ajeh
You can force it by adding around line 1232:
Code:
$submission_value = ($insurable_value > $max_usps_allowed_price) ? $max_usps_allowed_price : $insurable_value;
// Force $0.00 - on Intrenational
$submission_value = 0;
That worked! Thanks alot.
Re: USPS Module no longer returning values for 1st-Class Intl Lg. Env
Be aware that forcing the zero value will prevent things like Insurance from working ...
Re: USPS Module no longer returning values for 1st-Class Intl Lg. Env
Quote:
Originally Posted by
Ajeh
Be aware that forcing the zero value will prevent things like Insurance from working ...
Well. Even though Stamps.com looked like you could still ship Intl Large Envelope, what actually happens is when you print it the label has an address in California. Stamps.com says that they will take the parcels to foreign countries themselves with private partners.
No idea how well it is going to work.
Really sucks that USPS has done this. I ship a lot of Intl Large Envelope to Canada that used to cost $4.50 and $6.50 and now they are $9.50 and $15.