我正在尝试手动向 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)
。
提前感谢您的帮助! :)
答案 0 :(得分:1)
DSUSP