This has been covered in many ways (both CSS and PHP) over the years, but the previous solutions no longer work. I’m using Enfold theme version 4.2.1510156365 with a child theme that has a default functions.php (i.e. there are no modifications to functions.php), woocommerce 3.2.6 and WordPress version 4.9.4. Neither the previously suggested CSS or PHP solutions work with the Enfold theme. They do work with other themes that I have used recently.
Hey carylwills,
Please add following code to Functions.php file in Appearance > Editor
add_filter( 'woocommerce_product_tabs', 'av_remove_product_tabs', 98 );
function av_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
and let us know if that does not work.
Best regards,