• Resolved Kees Lamper

    (@keeslamper)


    Hi,

    With the newest version of the plugin the shortcode is not working anymore. If we downgrade the plugin it works again. Is there a bug?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The update is causing issues for us as well. The culprit is in the in plugin’s /wp-content/plugins/google-language-translator/css/style.php file on line 79.

    if(get_option(‘googlelanguagetranslator_active’) == 1) {
    if(get_option(‘googlelanguagetranslator_toolbar’) == ‘Yes’){
    echo ‘#google_language_translator{color:transparent;}’;
    } elseif(get_option(‘googlelanguagetranslator_toolbar’) == ‘No’) {
    echo ‘div.skiptranslate{display:none!important;}’; <<<< this is the problem
    }
    echo ‘body{top:0px!important;}’;
    echo ‘#goog-gt-{display:none!important;}’;
    }

    This bolded line 79 is causing any div with the skiptranslate class to not display. For us, the impact is all over the website since we literally have 1000s of text bits that we do not want translated.

    Until it is fixed by the developer, you could edit this file and remark out the offending line as such:

    //echo ‘div.skiptranslate{display:none!important;}’;

    Plugin Author edo888

    (@edo888)

    @keeslamper please post your website address and I’ll check it for you.

    Thanks! ??

    Thread Starter Kees Lamper

    (@keeslamper)

    Weird, it works now.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Not working with recent update’ is closed to new replies.