Skip to content

Instantly share code, notes, and snippets.

@fervous
Last active May 3, 2017 22:05
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/b9f263011f1074c7c062471999771a53 to your computer and use it in GitHub Desktop.
Save fervous/b9f263011f1074c7c062471999771a53 to your computer and use it in GitHub Desktop.
ToolTip tool tip sample WC Vendors Pro
add_filter('wcv_vendor_store_name', 'custom_wcv_vendor_store_name');
function custom_wcv_vendor_store_name( $args ){
$args['label'] = '<abbr title="'. __( 'Store Name - make it UNIQUE!!', 'wcvendors-pro' ) .'">' . __( 'Store Name', 'wcvendors-pro' ) . '</abbr>';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment