Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Last active January 26, 2018 13:00
Show Gist options
  • Save albionselimaj/4bba6ffbbd2c7cc19e76f06820797d39 to your computer and use it in GitHub Desktop.
Save albionselimaj/4bba6ffbbd2c7cc19e76f06820797d39 to your computer and use it in GitHub Desktop.
Hide Listing Packages products from Shop page
add_action( 'woocommerce_product_query', function( $q ) {
$tax_query = (array) $q->get( 'product_type' );
$tax_query[] = [
'taxonomy' => 'product_type',
'field' => 'slug',
'terms' => [ 'job_package', 'job_package_subscription' ],
'operator' => 'NOT IN',
];
$q->set( 'tax_query', $tax_query );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment