AndriiP
Forum Replies Created
-
Welcome. In other issues I saw that another people expiriencing the same issue. Recaptcha js is added via v3 way, so captcha is not displayed and js load failed with status 400.
Forum: Plugins
In reply to: [ReCaptcha v2 for Contact Form 7] ReCAPTCHA not working@howdy_mcgee did you check if plugin works with CFv5.1?
Because I have the same issue as described by @cdetar.
CFv5.0 works fineForum: Plugins
In reply to: [ReCaptcha v2 for Contact Form 7] ReCAPTCHA not working@iqcomputing Contact Form 7 v5.0 has code:
if ( ! wp_script_is( 'google-recaptcha', 'registered' ) ) { wpcf7_recaptcha_enqueue_scripts(); }
But in Contact Form 7 v5.1 this check is removed. Some in some cases ‘google-recaptcha’ is already registered before you call wp_register_script().
You should add
wp_deregister_script('google-recaptcha');
before
wp_register_script( 'google-recaptcha', $url, array(), '2.0', true );
in new version to make plugin working with CFv5.1- This reply was modified 4 years, 8 months ago by AndriiP.
Forum: Plugins
In reply to: [Advanced Editor Tools] Where to add valid elements?ANother plugin from this developer from configuring valid elements
Forum: Plugins
In reply to: [Category Checklist Tree] Svn taggreat, hope this will help for other developers too ??
Thanks for simple and perfect pluin!
Forum: Plugins
In reply to: [Transposh WordPress Translation] Transposh Pugin CallbacksHi, thanks for response
First filter may be needed to use different parsing settings for some post types or even different pages.
Second filter can be used to fix some translation errors etc.
Plugin is very popupal and it will be very useful for developers to have some way to modify plugin input/outputThere are all required suppressions in plugin, but we just have old centos 5 server with old php version with warning suppression bug https://bugs.php.net/bug.php?id=39018,
but hope we will update our server soonForum: Plugins
In reply to: [Transposh WordPress Translation] Transposh Pugin CallbacksIts ok to leave only ‘process_page’ callback
I just need to change error reporting level for parse->fix_html, because our server has old Centos version, admin cant update php here. And in old php version there is bug with warning suppressing using @Actually you can use apply_filter here and pass parser instance here, so it will be possible to change its parameters. And then use apply_filter to modify $buffer.
$parse->change_parsing_rules(...) $parse = apply_filter('transposh_process_page_start',..., $parse) $buffer = $parse->fix_html($buffer); $buffer = apply_filter('transposh_process_page_end',..., $buffer)