php 贝宝快速结帐移动的-结帐作为客人的选择

w41d8nur  于 2023-01-24  发布在  PHP
关注(0)|答案(1)|浏览(106)

我有一个贝宝快速结帐配置工作良好的桌面浏览器,它提供了两个选项“登录贝宝”或“结帐作为客人”,但在移动的它不允许用户通过卡直接支付与“结帐作为客人”-它总是显示“创建一个帐户”,而不是这是相当烦人的,有人知道如何让第二个选项“结帐作为客人”显示在手机上吗?

roqulrg3

roqulrg31#

默认情况下,PayPal会呈现所有符合条件的按钮。但是,某些集成允许覆盖此设置。PayPal调用这些资金来源。此示例演示了如何自定义可用的资金来源。

// Loop over each funding source/payment method
paypal.getFundingSources().forEach(function (fundingSource) {
  // Initialize the buttons
  var button = paypal.Buttons({
    fundingSource: fundingSource,
  })
  // Check if the button is eligible
  if (button.isEligible()) {
    // Render the standalone button for that funding source
    button.render('#paypal-button-container')
  }
})

相关问题