Skip to content

Instantly share code, notes, and snippets.

@fervous
Created December 21, 2016 03: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/ed807d263785fac9d3e3a816fafba4e6 to your computer and use it in GitHub Desktop.
Save fervous/ed807d263785fac9d3e3a816fafba4e6 to your computer and use it in GitHub Desktop.
Change the language of the STORE NAME wc vendors pro
/* change store name label */
add_filter ('wcv_vendor_store_name', 'wcv_vendor_store_name_spanish');
function wcv_vendor_store_name_spanish ($args) {
$args['label'] = 'nombre de la tienda <small>Required</small>';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment