Skip to content

Instantly share code, notes, and snippets.

@rickslayer
Created September 12, 2018 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rickslayer/eeea12a8f2fadb2ff40205e56d496350 to your computer and use it in GitHub Desktop.
Save rickslayer/eeea12a8f2fadb2ff40205e56d496350 to your computer and use it in GitHub Desktop.
Remove tabs on products woocommerce page
// Remove the additional information tab
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment