wc_create_order::add_product() How can I add line item notes?
-
Hello,
So after adding a product programmatically, I want to be able to add a line item note for each product that I added to the order.
$order = wc_create_order( $default_args ); $product = wc_get_product( $product_id ); $product->set_price( strval( $price ) ); $order->add_product( $product , 1 );
Is there a method for adding a line item note for each product that I add to the order?
Thank You
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wc_create_order::add_product() How can I add line item notes?’ is closed to new replies.