【发布时间】:2019-04-01 05:45:59
【问题描述】:
我在我的页面上使用来自 Paypal 的当前 REST API。但我无法在 Paypal 上隐藏运输信息。我不想让我的客户选择更改 Paypal 中的地址。
payment: function(data, actions) {
return actions.payment.create({
transactions: [{
amount: {
total: '<? print(number_format($got_daten["bestellwert"],2,".","")); ?>',
currency: 'EUR',
details: {
subtotal: '<? print(number_format($got_daten["bestellwert_slim"],2,".","")); ?>',
shipping: '<? print(number_format($got_daten["orderVersandkosten"],2,".","")); ?>'
}
},
description: 'Krusenhof Etteln - Onlinebestellung',
custom: 'Bestellung: <? print($got_daten["orderID"]); ?>',
}],
note_to_payer: 'Rufen Sie uns an bei Fragen! Ihr Krusenhof Etteln'
});
},
如何添加隐藏选项(不发货)?
所有文档都是旧版本的,不再有效。
谢谢 标记
【问题讨论】: