gpt4 book ai didi

paypal - 如何从结帐弹出窗口中删除 "Ship to"部分?

转载 作者:太空宇宙 更新时间:2023-11-03 15:54:38 24 4
gpt4 key购买 nike

在使用 Paypal API 创建付款时,是否有任何选项允许从结帐弹出窗口中删除“运送至”部分?我的意思是不要在弹出窗口中显示它。

我不使用shipping_address option创建付款配置时 payment_json 对象中的任何位置。但该部分仍然存在。

enter image description here

最佳答案

我添加这个答案是因为我来这里是为了使用 PayPal Smart Payment Button 搜索禁用送货信息。这个答案可能对他们有帮助。

您必须添加以下行以删除送货地址。

application_context: { shipping_preference: 'NO_SHIPPING' }

例如:

paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{ amount: { value: 1.00 } }],
application_context: { shipping_preference: 'NO_SHIPPING' }
});
}
}).render("#paypal-button-container");

关于paypal - 如何从结帐弹出窗口中删除 "Ship to"部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39653753/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com