• Resolved graf1n

    (@graf1n)


    Hello! Tell me how to make the search look for products in all languages.
    Now he is looking for products only in the selected language, but it is necessary that he searches in all languages

Viewing 1 replies (of 1 total)
  • Thread Starter graf1n

    (@graf1n)

    So no one answered. I found it myself.
    Maybe someone will need.

    add_action('pre_get_posts', 'my_custom_search_query', 1);
    function my_custom_search_query($query)
    {
        if($query->is_search()) 
        {
            $query->query_vars['suppress_filters'] = true;
            return $query;
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to search for products in all languages?’ is closed to new replies.