Show product meta in order items table in Order Details

前端 未结 2 1738
名媛妹妹
名媛妹妹 2020-12-06 15:51

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

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-06 16:20

    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.

提交回复
热议问题