在woocommerce中手动添加费用 - add_fee

时间:2017-01-19 07:42:16

标签: php wordpress woocommerce

我正在尝试手动向 WooCommerce 添加订单。 除了增加费用外,一切正常。它不会对订单增加费用:

$order = wc_create_order();
$order->add_product( 1, 2 ); // This is an existing SIMPLE product
$order->add_fee('discount', -10, true, 'standard' );
$order->calculate_totals();
$order->update_status("Processing", 'Order from mobile application', TRUE);

因此添加了订单,但我无法在订单中添加fee(discount)

提前感谢您的帮助! :)

1 个答案:

答案 0 :(得分:1)

经过大量的研究和论坛后,我找到了解决方案,一个解决方案。手动添加值为-10

的订单商品
DSUSP