Skip to content

Instantly share code, notes, and snippets.

@fervous
Created December 22, 2016 04:29
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/cb43102e3c24a8aa368fd5453fc5fcf6 to your computer and use it in GitHub Desktop.
Save fervous/cb43102e3c24a8aa368fd5453fc5fcf6 to your computer and use it in GitHub Desktop.
change totals label dashboard/orders wc vendors pro
/* change the totals title */
add_filter ('wcv_order_table_columns', 'wcv_order_table_columns_custom_totals');
function wcv_order_table_columns_custom_totals ($args) {
$args['total'] = 'PRODUCTS TOTAL(S)';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment