Skip to content

Instantly share code, notes, and snippets.

@woogist
Created January 19, 2015 09:37
Show Gist options
  • Save woogist/f0573507c0a824c60fd1 to your computer and use it in GitHub Desktop.
Save woogist/f0573507c0a824c60fd1 to your computer and use it in GitHub Desktop.
Removes the tab "Vendors" in the single product page.
/**
* 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