If you want to remove woocommerce product tabs programmatically in WordPress then add that following code in your functions.php file.
Here “woocommerce_product_tabs” filter is used for alter woocommerce product tabs.
add_filter( 'woocommerce_product_tabs', 'woocommerce_remove_product_tabs', 98 ); function woocommerce_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; }
Have any doubt, then comment here!