kodac1
Forum Replies Created
-
I have a thread open with them as well ( https://ww.wp.xz.cn/support/topic/recaptcha-code-with-wpforms/#post-15858321 )
ALOWPS has a setting to turn on ReCaptcha for the comment section of posts. That seems to be the part that is causing the conflict between the two apps. Maybe that will help your devs hone in on the problem, or work with the other plugin team to collaborate.
I turned them off 1 by 1 and tested. It seems the AIOWPS “Spam Prevention” -> “Add Captcha to Comments Form” is the setting that is conflicting with wpForms.
Turning it off fixes the problem but obviously means regular comment sections on posts no longer have reCaptcha. You don’t have a solution for that do you?
So you have no plans to improve your ‘no conflict mode’ so that it only targets pages where wpForms actually is being used?
It’s ironic to call it ‘no conflict mode’ since it causes a conflict on every other page without a WPForm…
Hi,
Turning “Custom login form captcha settings” on or off doesn’t change the outcome.
Thanks for the reply. There is no language plugin. Why would that cause a problem though?
If the default redirect from
RewriteRule .* - [F]is to http://127.0.0.1Then why does the later section specify it directly and use an [L] flag instead?
#AIOWPS_BLOCK_SPAMBOTS_START <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_METHOD} POST RewriteCond %{REQUEST_URI} ^(.*)?wp-comments-post\.php(.*)$ RewriteCond %{HTTP_REFERER} !^http(s)?://(.*)?\.example\.com [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^$ RewriteRule .* http://127.0.0.1 [L]Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Manage Consent widget buttonThanks @jarnovos for the info. I managed to get everything working again eventually.
I hope future updates don’t change all the classes and id’s again.
For anyone finding this in the future I also had to bring back the mobile banner title manually following this article https://complianz.io/css-lesson-20-bringing-the-cookie-banner-title-back-to-mobile/
But updating the display:block part with !important because something else was overriding it to display:none. So I ended up with this:
/* Cookie Banner title on Mobile */
@media (max-width: 425px) {
.cmplz-cookiebanner .cmplz-header {
display: flex;
justify-content: space-between;
}
.cmplz-cookiebanner .cmplz-header .cmplz-title {
display: block !important;
}
}Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Manage Consent widget buttonThanks @jarnovos,
One other question – how can I completely remove the Manage Consent widget?
I couldn’t find it in the settings.I’ll try it all at once tomorrow hopefully.
Regards,