Disabling Audio reCAPTCHA ?

Disabling Audio reCAPTCHA ?

by Michel DENIS -
Number of replies: 2

Hello,

From what I read (in the tracker - MDL-43963), until now Audio reCAPTCHA is always in English, which gives a severe accessibility issue.

For this reason, I absolutely need to remove the Audio reCAPTCHA option (and text proposing the option). 

Looks like in Moodle (2.) reCAPTCHA this is controled from "recaptchalib.php" - but in other forums they do it using the CSS.

Please could you suggest me what is the easiest and cleaner patch for this ?

Many thanks in advance,

-michel

Average of ratings: -
In reply to Michel DENIS

Re: Disabling Audio reCAPTCHA ?

by Matteo Scaramuccia -
Picture of Core developers Picture of Peer reviewers Picture of Plugin developers

Hi Michel,
you could try via CSS, hiding those element having a class named recaptcha_only_if_audio (untested):

.recaptcha_only_if_audio {
display: none !important;
visibility: hidden;
}

HTH,
Matteo

In reply to Matteo Scaramuccia

Re: Disabling Audio reCAPTCHA ?

by Michel DENIS -

Hello Matteo,

Your custom css suggestion is making things change but not really (yet) the way it should go: with these lines inserted into the theme's custom css, the audio recaptcha option is still coming at registration time and, which is new, when I enter into that un-wanted audio recaptcha, there are no option recaptcha offered for getting back any visual recaptcha anymore !

Maybe some close but similar but item ?

Cheers,

-michel