Legally hide the Google reCAPTCHA V3 verification mark
Google reCAPTCHA V2 must choose a picture to verify whether the user is a real person. V3 is different. It uses automatic analysis of user behavior. You don’t need to press it twice, but a sign will pop up in the lower right corner. Many users want to hide it so as not to contact other web pages. The element is stuck in place.
According to Google's reCAPTCHA's FAQ article, the reCAPTHCA mark can be hidden, but the following text must be clearly indicated on the page form where we use reCAPTCHA.
Branding
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.
Add this code to avoid violation of usage rules.
Remove mark
Just paste the following code anywhere on the page:
<style>
.grecaptcha-badge {
display: none !important;
}
</style>
Or put the CSS code in the CSS file. If you use a package such as Divi, you can add it to the global code insertion area. E.g:

Comments
Post a Comment