Steps
- Open
functions.php. - Add the code below.
- Save the file.
Done — the Additional Information tab will be removed from all WooCommerce product pages.
function remove_additional_information_tab( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
add_filter(
'woocommerce_product_tabs',
'remove_additional_information_tab',
98
);