Add Column To WooCommerce Orders Page
-
Hey there. Thanks for great plugin.
I need ti add a column to the Woocommerce Orders page.add_action( 'manage_shop_order_posts_custom_column' , 'custom_orders_list_column_content', 20, 2 ); function custom_orders_list_column_content( $column, $post_id ) { switch ( $column ) { case 'my-column1' : // Get custom post meta data $my_var_one = do_shortcode('[wcpdf_download_invoice]'); if(!empty($my_var_one)) echo $my_var_one; else echo '<small>(<em>TEST</em>)</small>'; break; } }
Here is my code and it is not working at all. Can you help me?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add Column To WooCommerce Orders Page’ is closed to new replies.