Skip to content

Instantly share code, notes, and snippets.

@mohitsadaria
Created June 30, 2016 16:12
Show Gist options
  • Save mohitsadaria/bd71944d53c96fec02ff9d198dbbbf30 to your computer and use it in GitHub Desktop.
Save mohitsadaria/bd71944d53c96fec02ff9d198dbbbf30 to your computer and use it in GitHub Desktop.
WooCommerce - Remove or Hide product tabs
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] ); // Remove the description tab
unset( $tabs['reviews'] ); // Remove the reviews tab
unset( $tabs['additional_information'] ); // Remove the additional information tab
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment