Code to Remove Additional Information Tab in WooCommerce

/* Remove Additional Information Tab */
function wpflt_remove_add_info_tab( $tabs ) {
    unset( $tabs['additional_information'] ); 
    return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wpflt_remove_add_info_tab', 9999 );

Add this code to your child theme’s functions.php to Remove the Additional Information Tab on the Single Product page. It is quite annoying to have that tab for most users. By default, the additional information tab displays Product Attributes used for Variations, Shipping Information like Weight/ Dimensions, etc.

Shop Owners may need to hide such data from Customers. With the above code, the Additional information tab can be removed from the WooCommerce Single Product Page.