Here we will remove three tabs from the single-product page in WooCommerce. Just comment-out or delete any rows that you don’t want to remove.
Removing tabs on WooCommerce product pages
WooCommerce
// PHP
add_filter( 'woocommerce_product_tabs', 'guyPrimavera_remove_woo_tabs', 99 );
function guyPrimavera_remove_woo_tabs( $tabs ) {
unset( $tabs['description'] ); // description tab
unset( $tabs['reviews'] ); // reviews tab
unset( $tabs['additional_information'] ); // additional information tab
return $tabs;
}
Paste this snippet into your theme's functions.php or in a WordPress plugin.