Skip to main content
Login Join
Snippet · PHP

Remove the “Additional Information” Tab in WooCommerce

Shared by Amit Dholiya · July 16, 2026 · @woocommerce_product_tabs

1 copy
4 views
Back to Snippets

Steps

  1. Open functions.php.
  2. Add the code below.
  3. 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
);
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments