woocommerce_add_order_item_meta is deprecated
-
Hi. Not sure how to replace the following code so I don’t get warnings in the error log. I have this error:
[07-Dec-2022 09:03:49 UTC] woocommerce_add_order_item_meta is deprecated since version 3.0.0! Use woocommerce_new_order_item instead.
From this code:
add_action ('woocommerce_add_order_item_meta', 'add_item_meta', 10, 2); function add_item_meta( $item_id, $values ) { if($values['product_id']==230) { woocommerce_add_order_item_meta( $item_id, 'Flavours', $values['_goodlen'] ); } }
Any help would be much appreciated.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘woocommerce_add_order_item_meta is deprecated’ is closed to new replies.