Parth Solanki

How to Remove Additional Information Tab from WooCommerce Product Detail Page in WordPress

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

  1. Log into your WordPress site and access the Dashboard as the admin user.
  2. 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.
  3. 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;
}