Hide a WooCommerce Category from the Search Result
In this post we will show you how to add a product category restriction to the search bar results in the menu. In our example, we will search for “sample products” because there are some products with the category “Sample Products”. Then, we will try to remove these products from the search results with PHP code.
When we first search for “sample products”, all products with the “Sample Products” category are displayed below each other:
You can remove a category from the search results by adding the following code to your functions.php file. If you want to remove another category, simply change the value at “terms”.
function arrow_design_hide_rentals_from_search_pre_get_posts( $query ) { if (!is_admin() && $query->is_main_query() && $query->is_search()) { $query->set( 'post_type', array( 'product' ) ); $tax_query = array( array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => 'Sample Products', 'operator' => 'NOT IN', ), );$query->set( 'tax_query', $tax_query ); } }add_action( 'pre_get_posts', 'arrow_design_hide_rentals_from_search_pre_get_posts');
Conclusion
We hope this Hide a WooCommerce Category from the Search Result post was helpful and you are now able to integrate this also on your website! You can find more articles here:
Read another Woocommerce post : ‘Disable the WooCommerce Variable Product Price Range‘
Arrow Design, based in Dublin, Ireland, provides quality website design services in Dublin and beyond at affordable prices. If you would like help with implementing the above code, or any wordpress website development project, contact us. We love website design and it shows! We provide custom wordpress plugin development, website design training and lots more.
We do it all, so you don’t have to!
Related Posts
Woocommerce Account Page Hook Guide
In this article you will find a visual hook guide for the Woocommerce Account Pages, like the Login/Register page, the Downloads page or the Orders page.
Woocommerce Single Product Page Hook Guide
In this article you will find a visual hook guide for the Woocommerce Single Product Page. This should help you to quickly and easily find the hook positions on the page.
Woocommerce PHP – Product Categories by Product ID
In this tutorial you will learn how to check if a product is assigned to a tag, a category or a custom taxonomy. You can check if a product is is on the shop page, in the cart, in an order & more.
…We do more, so you can do less 🙂