• I think you have some kind of mistake on your synonyms configuration tab. I am not sure, but I think the tab is always disabled if Polylang is installed, no matter how the “Show all languages” setting is set.
    Looks like the code in /relevanssi/lib/tabs/synonyms-tab.php will always show an “error” message if Polylang is installed. At least this is how it works for me.

    $current_language = relevanssi_get_current_language();
    if ( class_exists( 'Polylang', false ) && ! $current_language ) {
    	relevanssi_polylang_all_languages_synonyms();
    	return;
    }

    I hope you will address this in some future versions.
    Thank you.

Viewing 1 replies (of 1 total)
  • Plugin Author Mikko Saari

    (@msaari)

    Are you actually seeing this problem on your site? I’m not able to reproduce the problem; the feature works exactly as it should.

    Note that there’s an AND operator there: the error message is only printed out if Polylang is installed AND the current language is not set.

Viewing 1 replies (of 1 total)

The topic ‘Polylang & synonyms’ is closed to new replies.