Skip to content

Instantly share code, notes, and snippets.

@ucheng
Created July 9, 2017 17:38
Show Gist options
  • Save ucheng/fd0d1e066f795fa2ff845ca3e5538fe2 to your computer and use it in GitHub Desktop.
Save ucheng/fd0d1e066f795fa2ff845ca3e5538fe2 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'product_type_selector', 'remove_product_types' );
function remove_product_types( $types ){
unset( $types['grouped'] );
unset( $types['external'] );
return $types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment