Skip to content

Instantly share code, notes, and snippets.

View agenciadw's full-sized avatar

David William da Costa agenciadw

View GitHub Profile
@agenciadw
agenciadw / functions.php
Last active February 4, 2022 20:03 — forked from tanmay27vats/function.php
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;
}