alexanderdean
Forum Replies Created
-
lol… thanks!
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;}’;
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;}’;
- This reply was modified 1 year, 9 months ago by alexanderdean.
TEMPORARY SOLUTION
1. via FTP or cPanel file manager or a WordPress file editor plugin, find and edit the following file: /wp-content/plugins/polylang/admin/admin-base.php
2. add two slashes to the beginning of line 59 so that it looks like this:
//$this->wizard = new PLL_Wizard( $this );
3. save the file and refresh your admin
4. wait for the plugin author to release an updateNOTE: restoring back to a previous version of the plugin is also fine…
.
Hi…
Okay… Thanks for the info… I’ll test things out for sure.
Cheers,
AlecForum: Fixing WordPress
In reply to: How to do same as this website?There’s no painless solution… You either have to learn the skills to reproduce it yourself or buy a product that can do it for you. If you buy a product, then you will still need to learn that product’s workflow in order to set it up. If you want to buy a product, then look through the slider plugins. If you want to learn it yourself, then have a look at this: https://css-tricks.com/snippets/css/typewriter-effect/ And, just fyi, the site you are referencing (wideeye.co) is using a different approach using a javascript timer to change the values of a CSS clip element thus revealing the text… In short, there are many ways to go about this effect, but if you aren’t a developer, then probably buying a product that does it out-of-the-box is the easiest.
Forum: Fixing WordPress
In reply to: How to do same as this website?It’s just text animation. You can do this with CSS (https://freefrontend.com/css-text-animations/) or with most of the slider plugins. Here’s a video that shows how to do it with the Slider Revolution plugin: https://www.youtube.com/watch?v=rA6Ex6ALyrw
Forum: Plugins
In reply to: [W3 Total Cache] Transient Storage in DBGreat! Thanks for confirming.
Forum: Plugins
In reply to: [W3 Total Cache] Redis QuestionsThanks, Marko! Looks like I’ll have to get in there and do some testing/monitoring for these two options.
Thanks!
Forum: Plugins
In reply to: [User Login History] No records are being createdHi Faiyaz…
Thanks for your reply.. I have used it to solve the problem.. it looks like the ‘wp_login’ hook is not triggered at all by the WPLMS AJAX login… I found a setting to disable the AJAX login and now the login triggers the action hook as it should… Also, it appears that the login on the website is also still working fine, so I think everything is okay.. Thank you!Forum: Plugins
In reply to: [User Login History] No records are being createdIt seems that the theme’s (WPLMS) frontend login is AJAX and thus bypassing the hooks your plugin uses. Any ideas?
Wow! Thanks… working fine now. It didn’t mention that on the settings screen so after I copied the files, I thought I was done.
Thank you very much for the super fast response!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] High Resolution LogoGreat! Thank you!