簡體   English   中英

在Paypal Express Checkout中將“以訪客身份嘗試PayPal”更改為“使用借記卡或信用卡付款”

[英]Change “Try PayPal as a Guest” to “Pay with a debit or credit card” in Paypal Express Checkout

有沒有一種方法可以在Paypal Express Checkout中將“以訪客身份嘗試PayPal”更改為“使用借記卡或信用卡付款”?

正如我在參考中所讀到的:

瀏覽器cookie確定結帳視圖買方在PayPal上的結帳視圖取決於其Web瀏覽器的cookie:

  • 如果已經創建了PayPal Cookie:當買家登陸PayPal頁面時,他們會看到PayPal登錄信息,但仍然可以選擇“以訪客身份嘗試Paypal”嗎?
  • 如果尚未定義PayPal Cookie:買方會看到默認的Guest Checkout視圖,以允許借記或貸記付款:“用借記卡或信用卡支付”

是否可以只留下“用借記卡或信用卡付款”?

遺憾的是,在PayPal結帳頁面上只能留下“用借記卡或信用卡付款”。 貝寶服務器將動態確定選項。

您可以使用以下簡單的輸入字段進行更改:

<input type="hidden" name="landing_page" value="billing">

它的100%對我有用。 希望對您有用。

完整的貝寶付款表格:

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM