Created
January 19, 2015 09:37
-
-
Save woogist/f0573507c0a824c60fd1 to your computer and use it in GitHub Desktop.
Removes the tab "Vendors" in the single product page.
This file contains 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
/** | |
* Removes the tab "Vendors" in the single product page. | |
*/ | |
function wc_remove_vendor_tab() { | |
global $wc_product_vendors; | |
remove_filter( 'woocommerce_product_tabs', array( $wc_product_vendors, 'product_vendor_tab' ) ); | |
} | |
add_action( 'init', 'wc_remove_vendor_tab' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment