Skip to content

Instantly share code, notes, and snippets.

@fervous
Created March 31, 2017 02:24
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/340513bebbea0dfe18fba4603105a678 to your computer and use it in GitHub Desktop.
Save fervous/340513bebbea0dfe18fba4603105a678 to your computer and use it in GitHub Desktop.
WC Vendors Pro change product short description label
/* change short description on product add/edit front end form */
add_filter('wcv_product_short_description', 'custom_wcv_product_short_description');
function custom_wcv_product_short_description ( $args ){
$args['label'] = 'Top Description';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment