Okay
  Public Ticket #2543344
Site search
Closed

Comments

  •  3
    Steven started the conversation

    Hello. How can I force Salient's search facility to include ONLY WooCommerce products in the results?

  •  3
    Steven replied

    I have solved this ticket by adding the below snippet to the functions.php file within the child theme. Please mark as closed.

    // Force search to only find products
    function searchfilter($query) {

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

    return $query;
    }

    add_filter('pre_get_posts','searchfilter');