我正在尝试创建一个订单,然后将产品添加到其中,效果很好。现在我正在尝试在添加产品之前编辑产品的价格和名称。但由于某种原因我做不到
以下是我正在尝试做的事情:
$order = wc_create_order();
$item = wc_get_product( $components[$comp]['component_product_id_2'] );
//var_dump($item); exit;
/*_____BELOW IS WHAT I HAVE TRIED NEW_________*/
$item_args = array(
'name' => 'Product A',
'total' => wc_get_price_excluding_tax( $item, array( 'qty' => 1, 'price' => 245 ) ),
);
/*_____ABOVE IS WHAT I HAVE TRIED NEW_________*/
$order->add_product( $item, $components[$comp]['quantity'], $item_args );
我已经尝试了上述参考add_product信息
没有$item_args
一切都可以完美运行。项目在 wooCommerce 订单中添加。所以这意味着其余代码都可以,除了$item_args
.所以我认为没有必要放$components
代码。
我想编辑 woocom 订单产品的价格和名称。
这是它是如何完成的
$prices = array( 'totals' => array(
'subtotal' => $custom_price,
'total' => $custom_price
) );
$order->add_product($product, $quantity, $prices);