1

我已经在我的 PHP 网站上实现了 PayPal。一切正常,但我想显示带有“立即购买”且没有“PayPal”文本的 PayPal 按钮

文档说要设置label:'buynow'branding:false

参考链接:- https://developer.paypal.com/docs/archive/checkout/how-to/customize-button/#label

<div id="paypal-button-container" style="width: 180px" class="btn submit"></div>

paypal.Buttons({
  style: {
    label:   'buynow',
    layout:  'horizontal',
    color:   'blue',
    shape:   'rect',
    branding: false,
    height : 48
  },
  fundingSource: paypal.FUNDING.PAYPAL,
  // onClick is called when the button is clicked
  onClick: function(data, actions) { ... },
  createOrder: function(data, actions) { ... }
}).render('#paypal-button-container');

但是“PayPal”这个词仍在显示

在此处输入图像描述

4

1 回答 1

1

您链接到旧的/存档的 checkout.js SDK 文档

最新的 Smart Payment Buttons SDK不支持branding: false参数,它似乎被设计为更频繁地与其他支付方式结合使用,如借记卡/信用卡嵌入式支付字段、Venmo 等

因此,您的无品牌选项将是显示扩展内联字段的黑色“借记卡/信用卡”按钮。

于 2020-04-21T07:04:11.403 回答