#1 2026-01-17 21:49:53

jessica1998
Member
New York (USA)
2022-05-09
31

Hide "Help" link on the login page

Hi,

I need to know how to disable the "Help" link on the Piwigo login screen for Piwigo 16

Thank you for your work!

Offline

 

#2 2026-01-18 10:38:36

polowigo
Member
France
2022-08-06
45

Re: Hide "Help" link on the login page

Hi,

Which theme is in use? I don't see this link with Bootstrap Darkroom (Piwigo 16.0).

Offline

 

#3 2026-01-18 11:26:01

OHappyDay
Member
2023-02-08
199

Re: Hide "Help" link on the login page

It is in the upper right corner of the screen.

Offline

 

#4 2026-01-18 14:17:36

polowigo
Member
France
2022-08-06
45

Re: Hide "Help" link on the login page

I have such a link, but in the profile page. In this case, you may try something like:

Code:

#theProfilePage  #header-options div:nth-of-type(2) {
  display: none;
}

I did not test it.

Offline

 

#5 2026-01-18 14:46:46

OHappyDay
Member
2023-02-08
199

Re: Hide "Help" link on the login page

This is not correct.

This works:

#header-options div:nth-of-type(2) {
  display: none;
}

Go to Locale Files editor plugin, choose the CSS tab, select "local / rule / rules.css" option from the dropdown and paste the above code into the text field.

Klaus

Offline

 

#6 2026-01-18 15:00:42

polowigo
Member
France
2022-08-06
45

Re: Hide "Help" link on the login page

Be careful, in this way the help link will be hidden everywhere: password, profile, register, identification templates of the standard pages.

Offline

 

#7 2026-01-18 16:45:50

OHappyDay
Member
2023-02-08
199

Re: Hide "Help" link on the login page

That could be the case.
Maybe this is more specific and should restrict the rule to the login page.

#theIdentificationPage #header-options div:nth-of-type(2) {
  display: none;
}

The other question is why the link to a help page should be hidden?

Offline

 

#8 2026-01-18 18:01:41

polowigo
Member
France
2022-08-06
45

Re: Hide "Help" link on the login page

It seems to be going very fine.
And I agree with the question but there are undoubtedly good reasons.

Offline

 

Board footer

Powered by FluxBB