Skip to content

Instantly share code, notes, and snippets.

@fervous
Created August 15, 2017 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fervous/c8f01c7e42b44b1ab91efaaf8cddbf55 to your computer and use it in GitHub Desktop.
Save fervous/c8f01c7e42b44b1ab91efaaf8cddbf55 to your computer and use it in GitHub Desktop.
Remove / unset shipping column in orders pro dashbaord page
add_filter( 'wcv_order_table_columns', 'remove_wcv_order_table_columns' );
function remove_wcv_order_table_columns( $columns ){
unset( $columns['status'] );
return $columns;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment