我已经在我的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”一词仍在显示
答案 0 :(得分:1)
您已链接到旧的/存档的checkout.js SDK文档
最新的Smart Payment Buttons SDK的branding: false
参数is not supported,似乎设计为与其他付款方式(例如借记卡/信用卡嵌入式付款字段)结合使用, ,Venmo等
因此,您的无商标选项将显示黑色的“借记卡/信用卡”按钮,以扩展行内字段。