Skip to content

Instantly share code, notes, and snippets.

@arelthia
Created November 27, 2014 03:37
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 arelthia/083264702709cd18ba1f to your computer and use it in GitHub Desktop.
Save arelthia/083264702709cd18ba1f to your computer and use it in GitHub Desktop.
Remove WooCommerce Additional Information Tab
//remove additonal info tab from products
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
global $product;
if( $product->has_attributes() || $product->has_dimensions() || $product->has_weight() ) {
unset( $tabs['additional_information'] );
}
return $tabs;
}
//Source: http://docs.woothemes.com/document/editing-product-data-tabs/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment