1

当客户在需要输入卡信息等时单击将他重定向到 PayPal 页面的按钮,该页面是英文的。是否可以将其更改为其他语言?例如捷克?如果是,该怎么做?该信息是否可以在表单输入隐藏字段中与其他信息一起发送,或者在该表单的操作链接中发送?

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

<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>
4

3 回答 3

2

你如何准确地显示按钮?因为如果您查看此表,https: //cms.paypal.com/uk/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables#id08A6HI0709B__id08A7CI030HS ,您会发现该lc参数旨在做您想做的事情喜欢做。

于 2013-09-05T09:34:17.197 回答
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,调整是自动的(用户配置文件设置参数)。

(如果回答了您的问题,请投票给答案)

于 2014-05-12T08:19:08.870 回答
0

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

于 2013-09-05T10:24:48.880 回答