Comments 1a01japat started the conversationSeptember 25, 2017 at 12:36pmHow do I remove the Additional Information tab on the product pages?[deleted] repliedSeptember 26, 2017 at 7:00amHi,Just add the following code in functions.php (end of file): // Remove the additional information tabfunction woo_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); return $tabs;}add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );It should do the trick.Source: https://mycyberuniverse.com/web/woocommerce-remove-additional-information-tab.html Sign in to reply ...
How do I remove the Additional Information tab on the product pages?
Hi,
Just add the following code in functions.php (end of file):
It should do the trick.
Source: https://mycyberuniverse.com/web/woocommerce-remove-additional-information-tab.html