Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
- function woo_remove_product_tabs( $tabs ) {
- unset( $tabs['additional_information'] ); // Remove the additional information tab
- return $tabs;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement