Remove additional information tab in WooCommerce
Do you know how to remove additional information tab in WooCommerce?
When you use product variations in WooCommerce for instance sizes or colors (or both) on product page you will see a new tab called “Additional information”.
In many cases this tab is unnecessary and it would be better to hide it. We can do it by CSS but it’s not right way. The tab will still be there but it will be hidden by this CSS code:
/* Hide the additional information tab */
li.additional_information_tab {
display: none !important;
}
Better way to remove additional information tab in WooCommerce is editing functions.php
file which is located inside your theme directory. Open this file and paste this code:
This code unset the ‘additional_information’ variable from the ‘$tabs’ array. After saving the file and reload the page the Additional information tab has gone.