Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fervous
Created April 7, 2017 01: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/f1e2676bfc0919ee7dd73335e8ad1e74 to your computer and use it in GitHub Desktop.
Save fervous/f1e2676bfc0919ee7dd73335e8ad1e74 to your computer and use it in GitHub Desktop.
change store address to address wc vendors pro
add_filter('wcv_vendor_store_address1', 'custom_wcv_vendor_store_address1_label');
function custom_wcv_vendor_store_address1_label( $args ){
$args['label'] = 'Address';
return $args;
}
add_filter('wcv_vendor_store_address1', 'custom_wcv_vendor_store_address1_placeholder');
function custom_wcv_vendor_store_address1_placeholder( $args ){
$args['placeholder'] = 'Address';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment