jeastburn
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Change reCAPTCHA badge position@tderouindesign From your research, it seems like it doesn’t matter which method you use to hide the badge. In that case, I’d go with
display: none
Forum: Plugins
In reply to: [Contact Form 7] Change reCAPTCHA badge positionIf you have multiple pages where you want to show the reCAPTCHA badge, I’d invert the CSS logic and do it this way so it is hidden on all pages by default and you specify which ones should show it:
/* hide captcha badge on all pages */ .grecaptcha-badge { display: none; } /* only show captcha badge on these pages */ .page-id-13 .grecaptcha-badge, .page-id-14 .grecaptcha-badge, .page-id-15 .grecaptcha-badge { display: inherit; }
You can also try using
visibility: hidden
instead ofdisplay: none
to see if that makes a difference in how they detect bot activity across the entire site.Forum: Plugins
In reply to: [Contact Form 7] Change reCAPTCHA badge positionI don’t mind the recaptcha badge at the bottom, but it shows on EVERY page of my site, not just the pages with the Contact Form. I don’t want to violate the terms, so I added this CSS for now so it only shows on my contact form page. It would be nice if the plugin did this for you.
/* only show captcha badge on contact page, id 13 */ body:not(.page-id-13) .grecaptcha-badge { display: none; }
Works for me now. Thanks!
Any updates on this issue? I’ve been experiencing the same problem with yesterday’s events showing up in the list.