Hide Forgotten Password 3.2

Hide Forgotten Password 3.2

by Kieran S -
Number of replies: 4

Is it possible to hide the forgotten password link in Moodle 3.2? Previously on Moodle 3.1 I was able to do this through the index_form but that's no longer there.

Average of ratings: -
In reply to Kieran S

Re: Hide Forgotten Password 3.2

by Jon Bolton -
Picture of Particularly helpful Moodlers Picture of Testers

If you have a custom css in your theme, you can add this:

.forgetpass {display: none;}


If not, go to Site Administration > Appearance > Additional HTML and add this to the "Within Head" section:

<style>
.forgetpass {display: none;}
</style>
Average of ratings: Useful (4)
In reply to Jon Bolton

Re: Hide Forgotten Password 3.2

by Kieran S -

Brilliant, used the Additional HTML and that's worked, thank you very much.

In reply to Jon Bolton

Re: Hide Forgotten Password 3.2

by Steve G -

Added the code Jon suggested to the "Within Head" section but this has now hidden the entire login page! Any ideas please?