Webzzz
Forum Replies Created
-
+1 Please let us know too, what did you find? I’m a pro user and also have the free version on many websites didn’t noticed anything different or suspicious…
Sorry if I sounded to harsh I didn’t mean it to be so.
Forum: Plugins
In reply to: [WP Fastest Cache] Premium not functioning correctly :(Forum: Plugins
In reply to: [WP Fastest Cache] missing blank.gifOk thank you!
Hey @nlpro,
Thank you for participating in this conversation.
Reasons I use this the way I use it, is for better control of what is happening when I’m not maintaining the website, since it’s not only one website I like to make sure I have seen all the reports in the log and then delete it, so that next time I visit there is only the once I didn’t see.
Now the problem is I need the log to stay indefinitely until I have check it, if I set it to say 60days or 120days it’s not guarantied that I had time to visit all of the websites to check all logs. Now if I forget to copy the log before it’s auto removed well then I have nothing no idea of what happen.
Manually removing it is best for me, and many others who complain about this, read why they complain to understand.
This is so needed that someone actually take time to make an extra plugin for this.
Just imagine you have over 50 websites to maintain and control, and you are responsible for security and other maintenance. if logs just start to disappear you will be fucked and a lot of people to answer to.
The rest of my questions you answered, Thank you.
Hey,
Sorry for the delay.
The test link I used is: https://demos.net-factor.com/audio-and-video/
I open it in few browsers, with same results.
iPhone 5se & iPhone x, once you click on the player to play it will open the video with the native video player with native controls, don’t misunderstand me in my opinion it’s better as it’s more familiar, but as to why it’s happening I have no idea.Forum: Plugins
In reply to: [HTTP Headers] Enhancements with adding “HREFLANG” TagsThank you! you are Awesome! keep up the good spirit ??
Hello @codepeople,
Thank you for the detailed answer I really appreciate it. and hope it can also helps others to understand better…
{{Could you let me know where are you testing the player, and the device you are using, please? The players should use controls in the plugin, even in mobiles devices.}}
A: I was testing in on iphone 5se and iphone x, using safari and chrome. similar results on both.
I will set testing environment and play with this plugin to see if I can achieve what was needed…
Thank you!
Forum: Plugins
In reply to: [Hide My Site] Is it possible to make it responsive on mobile?Thank you, but no thank you, this “trick” is just that, all I’m asking is to please make it responsive, now days it’s standard. no custom code or tricks please embed this into the plugin.
I had this plugin for over a year now, and I have buy few license for this plugin to my websites. and can send to you the licenses to verify. used the free version on over 38 websites.
I will buy more/and use it on more projects only if you fix this.
Forum: Plugins
In reply to: [jQuery Updater] Enhancement possibilityAll works fine ?? I have tested over 45 plugins with this code…
Now as a + Google Lighthouse don’t show any vulnerabilities anymore
- This reply was modified 5 years, 10 months ago by Webzzz.
Forum: Plugins
In reply to: [GDPR] reCAPTCHA multilingual capabilitiesor like this solution…
https://wpml.org/forums/topic/how-to-translate-recaptcha-in-contact-form-7/
docs by Google
https://developers.google.com/recaptcha/docs/language
or this:
https://github.com/mcguffin/wp-recaptcha-integration/wiki/The-Language-Setting
Line 185:
https://github.com/kasparsd/contact-form-7-extras/blob/master/plugin.phpForum: Plugins
In reply to: [GDPR] reCAPTCHA multilingual capabilitiesHow about similar code to this:
public function init() { $attr = $this->getAttr(); //Site Key $this->pubkey = isset( $attr['public_key'] ) ? $attr['public_key'] : ''; //Secret Key $this->privkey = isset( $attr['private_key'] ) ? $attr['private_key'] : ''; // get_user_locale() was introduced in WordPress 4.7 $locale = ( function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale() ); $user_locale_lang = substr( $locale, 0, 2 ); $wpml_source_lang = isset( $_REQUEST['source_lang'] ) ? sanitize_text_field( $_REQUEST['source_lang'] ) : apply_filters( 'wpml_current_language', null ); $wpml_lang = isset( $_REQUEST['lang'] ) ? sanitize_text_field( $_REQUEST['lang'] ) : $wpml_source_lang; $lang = isset( $wpml_lang ) ? $wpml_lang : $user_locale_lang; wp_enqueue_script( 'wpt-cred-recaptcha', '//www.google.com/recaptcha/api.js?onload=onLoadRecaptcha&render=explicit&hl=' . $lang ); }
Forum: Plugins
In reply to: [GDPR] reCAPTCHA multilingual capabilitieslooking forward for the code/solution, can you please let me know?
thank you Fernando for the awesome plugin!
Forum: Plugins
In reply to: [GDPR] reCAPTCHA multilingual capabilities?? it doesn’t work
and I have try the below code too, it’s also not working:
add_action( 'wpcf7_enqueue_scripts', 'custom_recaptcha_enqueue_scripts', 11 ); function custom_recaptcha_enqueue_scripts() { wp_deregister_script( 'google-recaptcha' ); $url = 'https://www.google.com/recaptcha/api.js'; $url = add_query_arg( array( 'onload' => 'recaptchaCallback', 'render' => 'explicit', 'hl' => 'fr-CA' ), $url ); wp_register_script( 'google-recaptcha', $url, array(), '2.0', true ); }
- This reply was modified 6 years, 5 months ago by Webzzz.