I need to add custom column for order items and show specific product meta in this column. I mean something like image below, I can\'t find any action from woocommerce to ad
Since WooCommerce 3.0 you are not allowed to call the product_id directly. You need to replace this:
$product_id = $_product->get_id(); $value = get_post_meta($product_id, '_custom_field_name', 1);
This will do the trick and remove all errors and notices.