adrianmak Posted April 21, 2016 Share Posted April 21, 2016 I just built a simple shopping cart (added cart items are stored in session) and with paypal express checkout. it is working fine and tested in paypal sandbox. The product name is a multi-language field If i changed to another language on the website, when redirected to paypal checkout page, the product name is using my website's default language. the multi-language of the product name and desc. is display correctly in my website. Link to comment Share on other sites More sharing options...
Roope Posted April 21, 2016 Share Posted April 21, 2016 Hello adrianmak! How do you handle passing values to the PayPal checkout? Maybe you'll need something like this: if($user->language->isDefault()) { $value = $page->fieldname; } else { $value = $page->getLanguageValue($user->language, 'fieldname'); } 3 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