Reputation: 5894
Is there a way to add product category name to the admin order page in Woocommerce?
Right now it only display the product name.
Upvotes: 0
Views: 2418
Reputation: 65264
something like this??
add_action('woocommerce_before_order_itemmeta','woocommerce_before_order_itemmeta',10,3);
function woocommerce_before_order_itemmeta($item_id, $item, $product){
echo '<p>'.get_the_term_list($product->id, 'product_cat').'</p>';
}
this code will display category below the product name.
Upvotes: 3