Skip to content

Instantly share code, notes, and snippets.

@fervous
Created June 9, 2017 22:02
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/7d4541f629c3ca178f82fe4ab5aed3af to your computer and use it in GitHub Desktop.
Save fervous/7d4541f629c3ca178f82fe4ab5aed3af to your computer and use it in GitHub Desktop.
Change Apply to Become a Vendor Message Text WC Vendors
add_filter( 'wcvendors_vendor_registration_checkbox', 'custom_wcvendors_vendor_registration_checkbox', 10, 1 );
function custom_wcvendors_vendor_registration_checkbox( $message ) {
$message = 'Change your Message here....';
return $message;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment