I have a 2 language website. I want to allow people to pay with paypal in their own language even without having a Paypal account. I use
SOLUTIONTYPE = 'Sole';
LANDINGPAGE = 'Billing';
to accomplish this. However when the form on Paypal is shown it is in Italian all the time because the country of destination is Italy.
I tried using LOCALECODE to GB to make the website be in english when on the english website but the form is still in Italian. Basically LOCALECODE does nothing. I can make the form be in English only by not setting:
'SHIPTOCOUNTRYCODE' => 'IT',
'SHIPTOCOUNTRYNAME' => 'Italy',
But that is not ok because I need the country to be Italy.
I took the info from this page.
Any reason why LOCALECODE is not working?
Note: I use curl to get the token from Paypal, not a form embedded in the page.