使用Paypal API创建付款时是否有任何选项可以删除"发货到" Checkout弹出窗口部分?我的意思是不要在弹出窗口中显示。
在为付款创建配置时,我不会在shipping_address
对象中的任何位置使用payment_json
option。但该部分仍然存在。
答案 0 :(得分:2)
答案 1 :(得分:2)
我正在添加此答案,因为我是在这里使用 PayPal智能付款按钮来搜索以禁止向信息发送的。这个答案可能会帮助他们。
您必须添加以下行才能删除“发往地址”。
application_context:{发货首选项:'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");