WooCommerce provides a lot of information on the single product page. Personally, I don’t prefer the tabs provided by WooCommerce. An additional information tab is not required at all. So, I wrote a code to remove it. Maybe, some user needs it, but I don’t like that annoying tab. If you want to remove that “Additional Information” tab, then this snippet is for you.

Code: Remove additional information tab @ single product
/**
* @snippet WooCommerce: Remove Additional Information Tab @ Single Product
* @author Sandesh Jangam
* @donate $7 https://www.paypal.me/SandeshJangam/7
*/
add_filter( 'woocommerce_product_tabs', 'ts_remove_additional_information_tab', 9999 );
function ts_remove_additional_information_tab( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
2 thoughts on “WooCommerce: Remove Additional Information Tab @ Single Product”
Hello,
I tried to use your code on my website but it is not removing the Additional Info. Tab?
Your theme may have heavily modified the WooCommerce templates. Please contact the theme author and show them this code. I hope they will give you the right hook.