Delete Order metadata
-
Hello, i’m trying to delete specific metadata by key from all orders
i’ve tried
add_action( 'wc_delete_order_item_meta', 'please_delete', 10, 2 ); function please_delete($item_id, $meta_key){ global $woocommerce; foreach ( $items['order_item_id'] as $item_id ) { wc_delete_order_item_meta( $item_id, 'Customs in USD', true ); } }
i’m able to delete it from the DB by running this query
DELETE FROM wp_woocommerce_order_itemmeta WHERE meta_key = ‘Customs in USD’from functions.php nothing happens, please help
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Delete Order metadata’ is closed to new replies.