Question

I am using Recaptcha in my site and I was wondering if it is possible to change or even delete the link on the clean theme that says "Privacy & Terms".

   Recaptcha.create(publicKey, "recaptcha_div",
        {
            theme: 'clean',
            lang: 'en',
            callback: callback
        }
    );

Thanks in advance.

Was it helpful?

Solution

This should work just fine.

span#recaptcha_privacy {
    display: none;
}

OTHER TIPS

You can also enter a custom translation:

custom_translations : {
    instructions_visual : "Scrivi le due parole:",
    instructions_audio : "Trascrivi ci\u00f2 che senti:",
    play_again : "Riascolta la traccia audio",
    cant_hear_this : "Scarica la traccia in formato MP3",
    visual_challenge : "Modalit\u00e0 visiva",
    audio_challenge : "Modalit\u00e0 auditiva",
    refresh_btn : "Chiedi due nuove parole",
    help_btn : "Aiuto",
    incorrect_try_again : "Scorretto. Riprova.",
    privacy_and_terms : "Anything you want or empty"
}

The last variable is not in the documentation but works fine.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top