Skip to content

Instantly share code, notes, and snippets.

@woogist
Created July 20, 2015 12:05
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 woogist/fe3281b46bd068741c73 to your computer and use it in GitHub Desktop.
Save woogist/fe3281b46bd068741c73 to your computer and use it in GitHub Desktop.
// remove a column
function wc_csv_export_remove_column( $column_headers ) {
// the list of column keys can be found in class-wc-customer-order-csv-export-generator.php
unset( $column_headers['coupon_items'] );
return $column_headers;
}
add_filter( 'wc_customer_order_csv_export_order_headers', 'wc_csv_export_remove_column' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment