Hi
This is the information I was given by support:-
To get your PayPal page's language changed upon form submission, you can use this PHP snippet into your theme's functions.php file.
To get your PayPal page's language changed upon form submission, you can use this PHP snippet into your theme's functions.php file. This example sets the language to Japanese:
http://pastebin.com/HZ7TVz9M
**********************************************
I used this in my functions.php file:-
add_filter('gform_paypal_query', 'update_paypal_query', 10, 3);
function update_paypal_query($query_string, $form, $entry){
$query_string .= "&lc=en_US";
return $query_string;
}
and it seems to be working.......
Joe
Posted 11 years ago on Monday March 18, 2013 |
Permalink