Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created October 1, 2016 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save digitalchild/6b65c6e128c37898aa153b854875982a to your computer and use it in GitHub Desktop.
Save digitalchild/6b65c6e128c37898aa153b854875982a to your computer and use it in GitHub Desktop.
Remove product tabs
<?php
// Add this to your themes functions.php
// Remove product tabs on the product-edit form.
add_filter( 'wcv_product_meta_tabs', 'remove_product_tabs' );
function remove_product_tabs( $tabs ){
unset( $tabs['general'] );
unset( $tabs['attributes' ] );
return $tabs;
} // remove_product_tabs()
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment