Hello,
It is a default WooCommerce tab for products. In order to remove it, you need to add this code to the functions.php file in your child theme.
if ( ! function_exists( 'wd_single_disable_additional_tab' ) ) {
/**
* Disable single product additional_tab.
*
* @param array $tabs Tabs array.
* @return array
*/
function wd_single_disable_additional_tab( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wd_single_disable_additional_tab', 105 );
}
Kind Regards