WooCommerce does not provide an option to hide an Additional Information Tab from a product single page in the WordPress admin panel. However, WooCommerce has a filter called woocommerce_product_tabs
, you can use this filter to remove the Additional Information Tab.
Follow this step to remove the Additional Information Tab
- Log into your WordPress site and access the Dashboard as the admin user.
- From the Dashboard menu, click on Appearance Menu > Theme Editor Menu. Select child theme from the right side dropdown menu. look for the child theme functions file to add the function to hide the Additional Information tab.
- Add the following code to the functions.php file:
/* Remove Additional Information Tab from WooCommerce Product Page */
add_filter( 'woocommerce_product_tabs', 'wc_remove_product_tabs', 9999 );
function wc_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}