有没有办法在Paypal Express Checkout中将“以PayPal作为访客”更改为“使用借记卡或信用卡付款”?
正如我在参考文献中所读到的那样:
浏览器Cookie确定结帐视图买方的结帐视图 PayPal取决于他们的网络浏览器的cookie:
- 如果已创建PayPal cookie:当买家登陆PayPal页面时,他们会看到PayPal登录但仍可选择 选择“尝试Paypal作为访客”?
- 如果尚未定义PayPal cookie:买方会看到Guest Checkout的默认视图,允许借记或信用付款:“付款 借记卡或信用卡“
是否可以只留下“使用借记卡或信用卡付款”?
答案 0 :(得分:1)
Regrettably its not possible to leave only "Pay with a debit or credit card" at PayPal checkout page. PayPal server will determine the options dynamically.
答案 1 :(得分:0)
您可以使用以下简单输入字段进行更改:
<input type="hidden" name="landing_page" value="billing">
它100%适合我。我希望它对你有用。
完整的Paypal付款表格:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="yourbusinesspaypalaccountemail@mail.com">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Your Item Name">
<input type="hidden" name="amount" value="YOUR TOTAL AMOUNT">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Add special instructions to the seller:">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="rm" value="1">
<input type="hidden" name="landing_page" value="billing"> <!-- This filed redirect to Billing Page -->
<input type="hidden" name="return" value="Your Success URL">
<input type="hidden" name="cancel_return" value="Your Cancel Return URL">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
<input type="image" src="https://www.yourdomain.com/images/paypalpaynowbtn.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.yourdomain.com/images/paypalpaynowbtn.gif" width="1" height="1">
</form>