Skip to content

Instantly share code, notes, and snippets.

@quangbahoa
Forked from tanmay27vats/function.php
Created April 6, 2019 14:21
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 quangbahoa/acfecedeb78bf55f90f19b67946f65d7 to your computer and use it in GitHub Desktop.
Save quangbahoa/acfecedeb78bf55f90f19b67946f65d7 to your computer and use it in GitHub Desktop.
Remove "Product Type/Product Data" Dropdown Options - WooCommerce
add_filter( 'product_type_selector', 'remove_product_types' );
function remove_product_types( $types ){
unset( $types['grouped'] );
unset( $types['external'] );
unset( $types['variable'] );
return $types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment