Last active
May 1, 2022 20:43
-
-
Save woogists/a773892c2e7e19e69c24e6051ef52198 to your computer and use it in GitHub Desktop.
[Frontend Snippets][Editing product data tabs] Remove product data tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; | |
} |
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 ?
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
How to disable only the tabs "Delete Description Tab"