after trying odd codes with my poor php skills i found the solution!
ther’s an error in the syntax of the plugin’s author if statement:
this is what the author suggests
if (xlanguage_current_language_code == “cy”) { … }
this is the working one
if (xlanguage_current_language_code() == “cy”) { … }
i found it trying to echo the variable xlanguage_current_language_code
hope it works for you as it did for me..
happy coding ??