Woocommerce product search

Hello, X-Masters!

Are anybody know how I can set my web-site search for woocommerce products only?

Thank you.

Hi @IvchenkoDV,

Thanks for reaching out.

That’s possible, please check this https://wordpress.stackexchange.com/questions/223576/changing-a-themes-search-function-to-only-show-results-from-woocommerce

The code is this

add_action( 'pre_get_posts', 'wpse223576_search_woocommerce_only' );

function wpse223576_search_woocommerce_only( $query ) {
  if( ! is_admin() && is_search() && $query->is_main_query() ) {
    $query->set( 'post_type', 'product' );
  }
}

That’s not our code so you may use and enhance it but we can’t provide support with this custom code.

Thanks!

Thank you very much.
The code is work :smiley:

On behalf of my colleague, you’re welcome. Cheers! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.