简体   繁体   中英

Localize this PayPal link: webscr

I'm using a wordpress plugin that redirect my buyers to:

https://www.paypal.com/cgi-bin/webscr

but I'd like to redirect them to an Italian localized page so they can feel at home in the PayPal Italian page.

the snippet of code is:

$code = '<form action="https://www.paypal.com/cgi-bin/webscr" name="ppform'.$randval.'" method="post">';

and moreover the buyer receive this:

Product: name Amount: 10.00 EUR Buyer Email: email@email Download Link: link

Any idea?

With Payments Standard you can use the currency_code parameter to set the currency used during checkout and displayed on the PayPal pages.

You can use the lc parameter to set a locale code as well, which effects the language on the PayPal checkout pages. In your case it seems you can accomplish what you want by adding the following to your button code / standard checkout code.

<input type="hidden" name="lc" value="IT" />
<input type="hidden" name="currency_code" value="EUR" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM