Skip to content

Instantly share code, notes, and snippets.

@fervous
Created March 27, 2017 22:10
Show Gist options
  • Save fervous/89cdaf27dea13b5a72cae04239f055fc to your computer and use it in GitHub Desktop.
Save fervous/89cdaf27dea13b5a72cae04239f055fc to your computer and use it in GitHub Desktop.
WC Vendors Pro Rename Change Commission Label Notify Vendor Email
/* WC Vendors Pro Rename Commission Label Notify Vendor Email */
add_filter('wcv_notify_vendor_commission_label', 'rename_wcv_notify_vendor_commission_label');
function rename_wcv_notify_vendor_commission_label( $commission_label ){
$commission_label = 'Sales Subtotal:';
return $commission_label;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment