Created
October 7, 2015 12:20
-
-
Save SirDarcanos/5c5118e5e3d2bc517ea9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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