GET FREE VERSION GET THE PRO VERSION

Multilingual Support

Support for multilingual plugins like WPML, Polylang, qTranslate, WooCommerce Multilingual, etc.

In this article

Multilingual support

Do you have a multilingual site and use WPML, Polylang, qTranslate or WooCommerce Multilingual plugins? Then we have good news for you - Advanced Woo Search plugin supports  all of them.

You don't need to do any extra work in order to make the search plugin work with your site. Any time when you create a new translation to any of your products it will automatically add to the plugin index table and will be available for search.

Your visitor will see only search results that belong to the currently active site language.

For example your site has two languages - English and German.

When a visitor switches to German language and then searches for something he will only see search results with German languages. Same for any other language.

Search results with active German language

Search results with active German language

It is actual and for taxonomies archive pages search as well.

Translated terms in search results.

Translated terms in search results.

FAQ

Q: What multilingual plugins are currently supported?

Officially Advanced Woo Search support WPML, Polylang, qTranslate and WooCommerce Multilingual.

But this does not mean that the search will not work with other plugins. You just need to test the search results more thoroughly before you start using them. In any case, if you have any questions, you can contact support team.

Q: Is it possible to display all languages' results at the same time?

Yes, it is possible with little code snippet. Please use:

add_filter( 'aws_search_current_lang', 'my_aws_search_current_lang' );
function my_aws_search_current_lang( $current_lang ) {
    return false;
}