
If you are using Contact Form 7 and Google reCAPTCHA v3, there will be a Google reCAPTCHA badge at the bottom right in every pages of your website. Refer image above.
There is no setting to disable it but luckily we can remove it by using CSS. But first, we must include reCAPTCHA branding visibility by adding this text in your contact form page as I put in my Contact page.
This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.
Then you can add this CSS in your Additional CSS under Appearance tab in WordPress Dashboard.
.grecaptcha-badge { visibility: hidden; }
It will hide the reCAPTCHA badge from showing and not effect the reCAPTCHA functionality.
Source: Google reCAPTCHA FAQ
Leave a Reply