Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active May 1, 2022 20:43
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save woogists/a773892c2e7e19e69c24e6051ef52198 to your computer and use it in GitHub Desktop.
Save woogists/a773892c2e7e19e69c24e6051ef52198 to your computer and use it in GitHub Desktop.
[Frontend Snippets][Editing product data tabs] Remove product data tabs
/**
* Remove product data 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;
}
@SergeiMap
Copy link

How to disable only the tabs "Delete Description Tab"

@krezatulpod
Copy link

Hello ! Thank you for this snippet ,it does what it is suposed to.I have a question thought.How can i remove description and reviews from a certain product,not for all ? It is possible with this code ?

@ayoub-bousetta
Copy link

ayoub-bousetta commented Jan 20, 2021

That function needs to be extended....like passing args with $tabs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment