[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; | |
} |
This comment has been minimized.
This comment has been minimized.
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 ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
How to disable only the tabs "Delete Description Tab"