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
Hi,
Which theme is in use? I don't see this link with Bootstrap Darkroom (Piwigo 16.0).
Offline
It is in the upper right corner of the screen.
Offline
I have such a link, but in the profile page. In this case, you may try something like:
#theProfilePage #header-options div:nth-of-type(2) {
display: none;
}I did not test it.
Offline
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
Be careful, in this way the help link will be hidden everywhere: password, profile, register, identification templates of the standard pages.
Offline
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
It seems to be going very fine.
And I agree with the question but there are undoubtedly good reasons.
Offline