使用checkout.js隐藏PayPal按钮

时间:2019-03-14 16:32:22

标签: css paypal

我正在使用PayPal's checkout.js,并且在视图中同时显示PayPal按钮和信用卡的小按钮。但是,如果我只想显示信用卡按钮而隐藏PayPal按钮,该如何实现呢?

html:

  <div id="paypal-button" class="m-t-20"></div>

js:

paypal.Button.render({
    env: '@Model.Env',
    locale: '@Model.CurrentCulture',
    style: {
        size: 'medium',
        height: 48,
        color: 'silver',
        shape: 'rect',
        label: 'checkout',
        tagline: 'true',
        fundingicons: 'true',
        layout: 'horizontal'
    },       

1 个答案:

答案 0 :(得分:1)

如果您禁用资金来源,则该按钮将不会显示。请参见Paypal page

我希望您想要的代码如下所示:

<script src="https://paypal.com/sdk/js?client-id=YOUR_CLIENT_ID&disable-funding=credit">
</script>