How To Hide In Login Form: Forgotten Username And Forgotten Password - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

How To Hide In Login Form: Forgotten Username And Forgotten Password

Edze de Boer

Edze de Boer

Template 4 years ago

Hi guys,

I am using free Helix Ultimate template.

For website chanelartcollection.com on the Contact page I would like to hide in the Login Form the Fields "Forgotten username" and "Forgotten password".

I have read several solutions, all of them several years old and not functioning.

How can I hide those questions in the login module?

Kind regards, Edze de Boer

0
7 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #13340

Hello Edze de Boer

Please follow the easy method. Use this CSS to Template Options -> Custom Code -> Custom CSS

.login .list-group{
  display: none;
}

Best regards

0
Edze de Boer
Edze de Boer
Accepted Answer
4 years ago #13346

Hi Ofi Khan,

I am sorry to tell you, it is not functioning. Maybe there should be a space between ...group and { , like so: .login .list-group {

But it makes no difference at all.

Kind regards, Edze de Boer

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 years ago #13350

I guess, Ofi thought about component view - not module.

For Login module you have to use:

#login-form ul.unstyled  li:nth-child(2),
#login-form ul.unstyled  li:nth-child(3) 
{display: none !important;}

Becuase 1st element is Register account.

0
Edze de Boer
Edze de Boer
Accepted Answer
4 years ago #13351

Hi Paul,

Almost there! Now I see this in the login module:

/ * Forgot your username?

  • /

Kind regards, Edze

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 years ago #13357

You forgot to tell us that you use login module inside SPPB.

In that case: Add custom CSS inside custom.css file, not inside addon.

#login-form ul.unstyled {display: none !important;}

0
Edze de Boer
Edze de Boer
Accepted Answer
4 years ago #13363

Hi Paul,

Very nice solution, thank you!

Kind regards, Edze de Boer

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 years ago #13380

You're welcome.

Have a nice day.

0