Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Created October 7, 2015 12:20
Show Gist options
  • Select an option

  • Save SirDarcanos/5c5118e5e3d2bc517ea9 to your computer and use it in GitHub Desktop.

Select an option

Save SirDarcanos/5c5118e5e3d2bc517ea9 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_product_tabs', 'woo_rename_vendor_tab', 20 );
function woo_rename_vendor_tab( $tabs ) {
if ( isset( $tabs['vendor'] ) ) {
$tabs['vendor']['title'] = __( 'Your Label Here' );
}
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment