Skip to content

Instantly share code, notes, and snippets.

@flabernardez
Forked from tanmay27vats/function.php
Last active April 17, 2018 11:42
Show Gist options
  • Save flabernardez/d247905630a687e19e5f6bdb59af1f42 to your computer and use it in GitHub Desktop.
Save flabernardez/d247905630a687e19e5f6bdb59af1f42 to your computer and use it in GitHub Desktop.
#woocommerce Eliminar tipos de productos en el selector de opciones
<?php
function fla_remove_product_types( $types ){
unset( $types['grouped'] );
unset( $types['external'] );
unset( $types['variable'] );
unset( $types['simple'] );
unset( $types['downloads'] );
return $types;
}
add_filter( 'product_type_selector', 'fla_remove_product_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment