Add product as column in orders overview
-
In the Woocommerce orders overview I want to add a column which shows the product name(s).
First I added an extra column to the custom post ‘shop_order’.
add_filter('manage_edit-shop_order_columns', 'extra_column'); function extra_column($columns) { $columns['title'] = 'Product'; return $columns; }
Working fine…but it needs to show the title from the custom post ‘product’.
Anyone?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Add product as column in orders overview’ is closed to new replies.