Paypal立即付款按钮,语言支持

时间:2015-09-25 09:13:30

标签: php html paypal

当用户点击我网站上的paypal付费按钮时,它将重定向到paypal付款页面,这需要用户输入他们的paypal凭据。目前,paypal支付页面是英文的。我希望它是基于我的网站语言的西班牙语或其他语言。以下是我发送给paypal的帖子数据。

 <input type="hidden" name="cmd" value="_xclick">
            <input type="hidden" name="business" value="<?php echo $paypal['merchant_account']; ?>">
            <input type="hidden" name="return" value="<?php echo $paypal['webpage_url'].$language_path.$paypal['return_url']; ?>">
            <input type="hidden" name="currency_code" value="<?php echo $currency; ?>">
            <input type="hidden" name="item_name" value="<?php echo $itemName; ?>">
            <input type="hidden" name="amount" value="<?php echo number_format((float) $order->getTotal(), 2, '.', ''); ?>">
我尝试做类似的事情:

<input type="hidden" name="locale" value="es_es">

但它不起作用。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

您应该使用lc=es_es

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="vimaluk@gmail.com">
<input type="hidden" name="lc" value="es_es">
<input type="hidden" name="item_name" value="test">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

enter image description here