prestaquest Posted March 18, 2013 Share Posted March 18, 2013 Hi guys, I've done some thorough search to find an answer to my problem; the Paypal Express checkout page on my store displays the language of my Paypal account's home country; Germany, but I need it to display in US English as all of my customers are from the US. There have been mixed threads about this issue on the web, but none of the solutions mentioned work so far. My basic question is therefore; what Prestashop PHP statements do I need to edit, to make sure that the first Paypal screen after checkout displays in US English? Many thanks for your suggestions, it might be a tough one! Link to comment Share on other sites More sharing options...
prestaquest Posted March 18, 2013 Author Share Posted March 18, 2013 To provide information about a solution I've tried: Tools > Translations > Translations of installed modules this gives the following error: Language : EN - Translations of installed modules Total expressions : 1347. Click the fieldset title to expand or close the fieldset.. Warning, your hosting provider limits the maximum number of fields to post in a form: 1000 for max_input_vars Please ask your hosting provider to increase the suhosin post and request limit to 1447 at least. or edit the translation file manually. -------- Does anyone how to fix this? Link to comment Share on other sites More sharing options...
xavdpub Posted March 26, 2013 Share Posted March 26, 2013 Hi Forget about translations On prestashop 1.5.2 and paypal 3.4.4 (not tested for other versions) in module/paypal/expresscheckout/process.php : add the " localecode" function like this in this order (!) , around line 145 // Set payment detail (reference) $this->_setPaymentDetails($fields); $fields['SOLUTIONTYPE'] = 'Sole'; $fields['LOCALECODE']='US'; $fields['LANDINGPAGE'] = 'Login'; And in module/paypal/paypal.php change the country to US DEFAULT_COUNTRY_ISO = 'US'; let us know if this flies , it did for me Best Xavier 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