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;}’;