Shakko Posted December 7, 2012 Share Posted December 7, 2012 If you are getting error messages like this one: PayPal response:TIMESTAMP -> 2012-12-05T23:10:21ZL_ERRORCODE0 -> 10729L_SHORTMESSAGE0 -> Shipping Address State EmptyL_LONGMESSAGE0 -> The field Shipping Address State is requiredL_SEVERITYCODE0 -> Error Then it seems that one of your customers wanted to use Checkout with PayPal option (available at cart page). To prevent this error do these steps: 1. Go to modules. 2. Select PayPal. 3. Change Chose PayPal Express allow your customers to pay with two clicks from YES to NO. Link to comment Share on other sites More sharing options...
icenil Posted December 15, 2012 Share Posted December 15, 2012 Yeah I did the same. ( like You said its temporary). I cant believe that for so long time its not fixed. Link to comment Share on other sites More sharing options...
mezyana Posted December 18, 2012 Share Posted December 18, 2012 I did same think but didn' work for me always same kind of error: PayPal response:TIMESTAMP -> 2012-12-18T08:16:57ZL_ERRORCODE0 -> 10730L_SHORTMESSAGE0 -> Shipping Address Postal Code EmptyL_LONGMESSAGE0 -> The field Shipping Address Postal Code is requiredL_SEVERITYCODE0 -> Error Where my clients think that payment was ok, because they didn't receibve any error notification (they discover it only once they check account on line) Please help ! i am not a tech guy Link to comment Share on other sites More sharing options...
icenil Posted December 18, 2012 Share Posted December 18, 2012 Did You switched off that 3 step paypal checkout? If You make customers go through long way (regular way) checkout, and at the end of proccess choose paypal as a payment option, everything shoud work. Link to comment Share on other sites More sharing options...
icenil Posted December 20, 2012 Share Posted December 20, 2012 My bad, apparently, it doesn't work for me too. Link to comment Share on other sites More sharing options...
designguy79 Posted January 21, 2013 Share Posted January 21, 2013 Is there a solution for this yet? I have a feeling it is related to the fact that Guest checkout appears to not require a state selection, even though my Localization settings for USA require a state selection. Link to comment Share on other sites More sharing options...
TWFree Posted February 18, 2013 Share Posted February 18, 2013 (edited) The problem affects Internet Exploder, a.k.a. IE, a.k.a. "the browser formerly known as IE", a.k.a. Microsoft Internet Explorer. It only affects IE as my customers have reported and I've reproduced. We're running a custom-flavor of Prestashop 1.5.1 but from what I've seen it affects other versions, not sure how many. To reproduce the bug perform a checkout using "the browser formerly known as IE". Checkout as a guest in such a way as to have the "quick-order" screen rendered. A JavaScript error will be thrown and the state dropdown will be blank. IE will complain "console is undefined". A workaround for this issue is to have the customer register and set their State in the account/address screen. Another workaround is to ask your customer to use a browser which isn't "the browser formerly known as IE". This is caused by a bug in JavaScript code. This patch fixes it and we've tested it in on our v1.5.1 site: /themes/default/js/tools/statesManagement.js : line 36 --------------------------------------------------------------------- was: console.log($('select#id_state'+(suffix !== undefined ? '_'+suffix : '')+' option:not(:first-child)')); should be: if (typeof(console) !== "undefined" && console.log) { console.log($('select#id_state'+(suffix !== undefined ? '_'+suffix : '')+' option:not(:first-child)')); } Also, if you are using a custom theme, then you will want to change the file /themes/[MY_CUSTOMER_THEME_NAME]/js/tools/statesManagement.js Edited February 18, 2013 by TWFree (see edit history) Link to comment Share on other sites More sharing options...
newbie2PS Posted April 12, 2013 Share Posted April 12, 2013 Hi I do have the same problem although I followed the suggestion above - not allow guest checkout - not allow "your customers to pay with two clicks" but I my shop is 1.5.4 version therefore it says 3 clicks - I tested on google chrome - I tested both paying by paypal account and credit card through paypal According to http://forge.prestashop.com/browse/PNM-655 I think my issue is because I sell internationally not only in the USA therefore customers are not required to select a state. Or it would be a bug which do not copy the address from register information through paypal payment. I therefore wonder if this issue would be able to solve in what way. If anyone knows, please kindly advice me. Link to comment Share on other sites More sharing options...
TWFree Posted April 14, 2013 Share Posted April 14, 2013 (edited) There are related discussions. I also posted this suggested patch there; and @DWilden followed up with information that might be more helpful for store admins experiencing this problem with int'l orders. I haven't experienced the problem since I applied the patch. However, I wasn't aware of the problem with int'l orders, so if there is another bug/problem with Paypal+Int'l orders then it wouldn't have affected it. http://forge.prestas.../browse/PNM-655 http://www.prestashop.com/forums/topic/225187-paypal-express-checkout-error-the-field-shipping-address-state-is-required/ Edited April 14, 2013 by TWFree (see edit history) 1 Link to comment Share on other sites More sharing options...
newbie2PS Posted April 14, 2013 Share Posted April 14, 2013 Dear TWFree, Many Thanks for your post and the links. Let me get back again if I can use the patch and solve things. Best, Link to comment Share on other sites More sharing options...
newbie2PS Posted April 15, 2013 Share Posted April 15, 2013 Dear TWFree, The patch is great. Expresscheckout is working. I tried to pay and ship in Thailand. Everything is working well. Thank you very much. I can temporarily run my store by express checkout. Very appreciate it! Link to comment Share on other sites More sharing options...
patuga Posted June 8, 2013 Share Posted June 8, 2013 (edited) Hi guys, i'm from Portugal, and i'm having the same problem with orders to Thailand. i've looked at wikipedia and Thainland is supposed to have states, however in prestashop it is configured as "contain states -> NO" I'm not using Guest checkout, or express checkout. Does this patch need any further changes, or will it be enough to make orders work? Do i need to add States for Thailand manually? i've tried downloading location pack but it didn't work Edited June 8, 2013 by patuga (see edit history) Link to comment Share on other sites More sharing options...
patuga Posted June 8, 2013 Share Posted June 8, 2013 managed to fix the problem by changing "contain states -> yes" and adding the states i needed. Link to comment Share on other sites More sharing options...
Dh42 Posted June 10, 2013 Share Posted June 10, 2013 Here is the actual fix for the US problem. https://github.com/PrestaShop/PrestaShop-modules/pull/41/files Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now