Skip to content

Instantly share code, notes, and snippets.

@texe
Last active July 7, 2022 12:22
Show Gist options
  • Save texe/5208099477491bdd2ac08994188ab7e0 to your computer and use it in GitHub Desktop.
Save texe/5208099477491bdd2ac08994188ab7e0 to your computer and use it in GitHub Desktop.
WordPress - How to remove additional information tab in WooCommerce
// Remove additional information tab
function remove_product_tabs($tabs) {
unset($tabs['additional_information']);
return $tabs;
}
add_filter('woocommerce_product_tabs', 'remove_product_tabs',98);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment