我已经实施了Paypal Plus,工作正常。但根据paypal加上其显示支付选择选项墙默认显示三个选项 - 1 - 贝宝 2 - 直接付款 3 - 信用卡
我只想要Paypal在那里。那么,如何从PayPal Plus的付款选择页面中删除信用卡付款选项?
答案 0 :(得分:0)
您可能想尝试联系PayPal客户服务。我认为您无法在帐户中进行配置。
答案 1 :(得分:0)
您可以添加fundingSource
参数。示例:
var button = paypal.Buttons({
fundingSource: paypal.FUNDING.PAYPAL,
createSubscription: function(data, actions) {
return actions.subscription.create({
'plan_id': 'P-2U932934TF985691ALZ3HLEF'
});
},
onApprove: function(data, actions) {
alert('You have successfully created subscription ' + data.subscriptionID);
}
});
// Check if the button is eligible
if (button.isEligible()) {
// Render the standalone button for that funding source
button.render('#paypal-button-container');
}
此链接也可能有帮助:https://developer.paypal.com/docs/checkout/integration-features/standalone-buttons/