pluspol
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] New Problem with CF7 Post Form Submit RedirectWe have a similar problem. We found out that in our case it’s related to our use of Borlabs Cookie and reCAPTCHA.
Borlabs initially blocks the form. So when entering the site for the first time the form isn’t loaded. After giving consent the form loads but the JS doesn’t initialize (maybe because it’s too late). This leads to the submission not being done through fetch() but as a “regular” POST request.
Subsequent submissions work through JS because the form ist already unlocked and the JS initialization works.
Therefore: @takayukister Can the JS initialization being improved to better handle these cases? Maybe by employing a custom element that automatically triggers the logic as soon as the form enters the document.
And to your bug @ralfweber :
- Can you find a “submit” listener in your browser on the “form.wpcf7-form” element that belongs to CF7?
- Is the CF7 JS correctly loaded?
Best
Forum: Plugins
In reply to: [Local Google Fonts] Remove hostnames from font-face definitionsWe now use the following filter hook as workaround to generate relative urls:
add_filter('lgf_folder_url', function ($folder_url) {
return wp_make_link_relative($folder_url);});Forum: Plugins
In reply to: [Local Google Fonts] Remove hostnames from font-face definitionsIt might be sufficient to change:
return apply_filters( 'lgf_folder_url', $folder_url );
toreturn apply_filters( 'lgf_folder_url', wp_make_link_relative($folder_url) );
inincludes/class-local-google-fonts.phpForum: Plugins
In reply to: [WPS Hide Login] Problems when using non-standard SITEURLHi,
Thanks for your response and your tip. We will give it a try and get back to you with the result. However it might take a few days.
Best.
Forum: Plugins
In reply to: [AntiSpam for Contact Form 7] Multisite compatibilityHi @codekraft ,
Today the issue came up again, but on an unpatched installation. In the post we got errors on both instances at the same time, so we think that the issue is fixed.Therefore I’m closing here. Thanks for your support!
Best.
Forum: Plugins
In reply to: [AntiSpam for Contact Form 7] Multisite compatibilityHI @codekraft ,
Thanks for the hint. We can confirm that reactivating the plugin created the missing tables. So we’ll wait a bit whether the issue comes up again.
Best
Forum: Plugins
In reply to: [AntiSpam for Contact Form 7] Multisite compatibilityHi @codekraft ,
Unfortunately we can confirm that the issue still exists as it came up again just now.
Can you have a look at it again please? And also at my previous comment.
Best
Forum: Plugins
In reply to: [AntiSpam for Contact Form 7] Multisite compatibilityThanks for the update!
We could install the update without any problems. However we can’t really tell atm whether it works as expected as the problem occurred only once in a while. So we might need to wait a bit.Am I assuming correctly that the plugin creates tables for every blog? In this case upgrading the plugin hasn’t created the tables for our system. We only see the tables for the root instance.
BestForum: Plugins
In reply to: [JWT Authentication for WP REST API] PHP Parse Error Jwt_Auth_LoaderWe’re experiencing the same issue with PHP 7.4.
The reason might be that the require statement is processed to late.
As a solution the plugin may load the Composer autoloader int “jwt-auth.php” and also use it for its own classes. That would completely remove the need for the require statements.
Hi Mateusz,
Thank’s for your reply. I’ve sent you the page via email to hello@mattplugins.com. I hope that’s ok.
BestForum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Include version in download urlSure. Thanks for being so engaged!
Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Include version in download urlFYI, I have opened the following GitHub issue:
https://github.com/outlandishideas/wpackagist/issues/475Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Include version in download urlHi Aurovrata,
thanks for the fast response.Unfortunately I also don’t know how to control this but I’ll try to create an issue with WPackagist.org – Maybe they know what to do. The previous versions page is also very helpful, thanks for this.
Best