呈现不带品牌的“立即购买”贝宝智能付款按钮

时间:2020-04-21 06:22:16

标签: php paypal paypal-buttons

我已经在我的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”一词仍在显示

enter image description here

1 个答案:

答案 0 :(得分:1)

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

最新的Smart Payment Buttons SDK的branding: false参数is not supported,似乎设计为与其他付款方式(例如借记卡/信用卡嵌入式付款字段)结合使用, ,Venmo等

因此,您的无商标选项将显示黑色的“借记卡/信用卡”按钮,以扩展行内字段。