Skip to content

Instantly share code, notes, and snippets.

@fervous
Created January 12, 2018 16:05
Show Gist options
  • Save fervous/e5755445b32fb2f4f88b3fb86d54d54e to your computer and use it in GitHub Desktop.
Save fervous/e5755445b32fb2f4f88b3fb86d54d54e to your computer and use it in GitHub Desktop.
change rename label return policy wc vendors pro
/* Rename Return Policy Label - put this in the child theme functions.php file */
add_filter('wcv_vendor_shipping_return_policy', 'custom_wcv_vendor_shipping_return_policy');
function custom_wcv_vendor_shipping_return_policy( $args ){
$args['label'] = 'Return Policy & Terms';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment