This snippet allows you to remove the ‘Total’ column from the table of orders shown in the users’ my account dashboard.
/**
* Snippet Name: WooCommerce Remove Total Column In My Account Orders Table
* Snippet Author: ecommercehints.com
*/
add_filter( 'woocommerce_my_account_my_orders_columns', 'ecommercehints_remove_total_column_from_my_account_orders_table', 10, 1 );
function ecommercehints_remove_total_column_from_my_account_orders_table( $columns ) {
foreach ( $columns as $key => $name ) {
$table_columns[ $key ] = $name;
unset ($table_columns['order-total']);
}
return $table_columns;
}