如何在PayPal中为客户更改信用卡/ PayPal支付页面的语言?

时间:2013-09-05 07:38:01

标签: html paypal

当客户在需要提供卡片信息等时点击将其重定向到PayPal页面的按钮时,此页面为英文。是否可以将其更改为不同的语言?例如。捷克?如果是的话,怎么做?是否可以在表单输入hiddne字段中使用其他信息或该表单的操作链接发送该信息?

更新: 我在我的网站上使用此代码:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="****@yahoo.com">
<input type="hidden" name="quantity" value="<?php echo $sesion_qty?>">
<input type="hidden" name="item_name" value="<?php echo $sesion_prod ?>">
<input type="hidden" name="item_number" value="<?php echo $session_prodid ?>">
<input type="hidden" name="amount" value="<?php echo $sesion_price ?>">
<input type="hidden" name="currency_code" value="CZK">
<input type="hidden" name="return" value="http://****.com/test/mem_account/thanks.php">
<input type="hidden" name="cancel_return" value="http://****.com/mem_account/canceled.html">
<input type="hidden" name="notify_url" value="http://****.com/mem_account/ipn.php">
<input type="hidden" name="custom" value="<?php echo $_SESSION['order_id']; ?>">
<input type="image" border="0" name="submit" src="http://images.paypal.com/images/x-click-but5.gif" alt="whatihawk product with PayPal">
</form>

3 个答案:

答案 0 :(得分:2)

如何准确显示按钮? 因为如果您查看此表https://cms.paypal.com/uk/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables#id08A6HI0709B__id08A7CI030HS,您会发现lc参数旨在执行您想要执行的操作。

答案 1 :(得分:0)

Jimmy,API中有一个localecode选项。您能否告诉我们您尝试使用哪种PayPal产品,这将有助于我们建议正确的解决方案

答案 2 :(得分:0)

快速结账localecode

    &METHOD=SetExpressCheckout
    &RETURNURL=https://...
    &CANCELURL=https://...
    &PAYMENTREQUEST_0_AMT=25.00
    &PAYMENTREQUEST_0_CURRENCYCODE=EUR
    &PAYMENTREQUEST_0_PAYMENTACTION=Sale
    &LOCALECODE=ES

请参阅:https://developer.paypal.com/docs/classic/express-checkout/integration-guide/ECCustomizing/

对于REST APIS,调整是自动的(用户&#39;配置文件设置参数)。

(如果它回答你的问题,请投票给答案)