在订单明细中的订单商品表中显示产品元数据

时间:2014-09-03 12:32:17

标签: php wordpress wordpress-plugin woocommerce

我需要为订单商品添加自定义列,并在此列中显示特定的产品元数据。 我的意思是像下面的图像, 我无法通过woocommerce找到任何添加此列的操作! enter image description here

2 个答案:

答案 0 :(得分:4)

您可以使用以下代码:

// Add custom column headers here
add_action('woocommerce_admin_order_item_headers', 'my_woocommerce_admin_order_item_headers');
function my_woocommerce_admin_order_item_headers() {
    // set the column name
    $column_name = 'Test Column';

    // display the column name
    echo '<th>' . $column_name . '</th>';
}

// Add custom column values here
add_action('woocommerce_admin_order_item_values', 'my_woocommerce_admin_order_item_values', 10, 3);
function my_woocommerce_admin_order_item_values($_product, $item, $item_id = null) {
    // get the post meta value from the associated product
    $value = get_post_meta($_product->post->ID, '_custom_field_name', 1);

    // display the value
    echo '<td>' . $value . '</td>';
}

我已经对它进行了评论,因此它应该足够清晰,但简而言之,此代码添加了一个自定义列,名为&#34; Test Column&#34;,此列从自定义字段中提取值该产品名为&#34; _custom_field_name&#34;。

答案 1 :(得分:0)

从WooCommerce 3.0开始,您不能直接调用product_id。您需要替换以下内容:

$product_id = $_product->get_id();
$value = get_post_meta($product_id, '_custom_field_name', 1);

这将解决问题,并删除所有错误和通知。