Skip to content

Instantly share code, notes, and snippets.

@fervous
Created November 21, 2018 23:16
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/31ad613a8766f6beacbf2c7163c7dffc to your computer and use it in GitHub Desktop.
Save fervous/31ad613a8766f6beacbf2c7163c7dffc to your computer and use it in GitHub Desktop.
change seller info label wc vendors pro vendor settings page
/* change the label for the seller info wc vendors pro front end settings form */
add_filter('wcv_vendor_seller_info', 'custom_wcv_vendor_seller_info');
function custom_wcv_vendor_seller_info ( $args ){
$args['label'] = 'Profile & Policies';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment