To remove the Additional Information tab in WooCommerce, you can use a small code snippet in your theme’s functions.php file or a custom plugin. Add a filter to unset the tab: add_filter('woocommerce_product_tabs','remove_additional_info_tab',98); function remove_additional_info_tab($tabs){ unset($tabs['additional_information']); return $tabs; }. This hides the tab across all products. If you only want to remove it for certain products, add conditional logic (category, product ID, etc.). Alternatively, some themes let you disable tabs in their settings. Always test on staging and clear caches after changes.
How do I remove the Additional Information tab in WooCommerce?
Share