Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created April 26, 2023 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/568aee8c8671a7499cf674ae1268b63a to your computer and use it in GitHub Desktop.
Save plugin-republic/568aee8c8671a7499cf674ae1268b63a to your computer and use it in GitHub Desktop.
<?php
/**
* Remove product data tabs
*/
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment