add_filter( 'woocommerce_product_tabs', 'c2code_remove_product_tabs', 9999 ); function c2code_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; }
Jagdish Sarma Edited question December 18, 2020