How to remove the Privacy - Terms from Google recaptcha?

10,225

Solution 1

Changing/removing or hiding the privacy policy and terms is against the terms set by Google and agreed by you when you generated the API Key.

But for testing or debugging purposes you can hide the badge through the CSS, like below:

.grecaptcha-badge {
    left: -500px !important;
    right: initial !important;
}

or

.grecaptcha-badge {
    display: none !important;
}

Solution 2

From Google's documentation:

You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in >the user flow. Please include the following text:

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

example

Source: https://developers.google.com/recaptcha/docs/faq

Share:
10,225
Sandeep
Author by

Sandeep

Updated on June 14, 2022

Comments

  • Sandeep
    Sandeep about 2 years

    How can I change or hide Privacy & Terms text/link in Google new reCAPTCHA. I've tried with css and jquery and both are not working.

    Is it possible to do this?

    • brombeer
      brombeer almost 6 years
      Why would you want to do that?
    • Sandeep
      Sandeep almost 6 years
      @kerbholz In my Application google recaptcha is there but its client requirement to remove privacy and term from google recaptcha iframe. so is it possible to remove??
    • Ondrej K.
      Ondrej K. almost 6 years
      Not to use it if not OK with its Terms I guess?
    • AraByte
      AraByte almost 6 years
      Using ReCaptcha with no agreement to google Terms and Privacy is NOT logical at all ! NO you can't remove it
    • RickL
      RickL almost 6 years
      Tidy up for presentation
    • user2323922
      user2323922 over 5 years
      Rick is really asking about the fixed positioned "banner" Google has added that has started appearing. Typical of word press. caiovisk has fixed this in his post.
  • user2323922
    user2323922 over 5 years
    Brilliant thank you. I bet this is what Rick was after.
  • user2323922
    user2323922 over 5 years
    Sorry but the badge is not in the iFrame, caiovisk has resolved. Rick is unclear explaining the issue.