Skip to content
Advertisement

Search field to search for WooCommerce products instead of blog posts

I want to modify my WordPress site theme feature, and modify the search tool from header to show just related products, instead showing me blog post. I searched a little, and found that just need to modify the query, so can use for searching woo products. This is my current search query:

JavaScript

i found that i should put this line:

JavaScript

bellow

JavaScript

So it should looks like this:

JavaScript

but still show me mixed results from Woo Products and Pages/Blog posts.

So my question is what to modify in query to search just for WooCommerce products instead of blog posts. Thanks in advance.

Advertisement

Answer

Welcome to Stack Overflow.

Add a hidden field to search for products.

<input type="hidden" value="product" name="post_type">

Live example from one of my sites.

Example has separate forms to search posts, products, news.

Best wishes, Mitchell

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement