Jump to content

Remove Forgot Password Button


igeoorge
Go to solution Solved by Happy2Play,

Recommended Posts

igeoorge
Hi friends

 

Previously I used the Code:

 

/ * ---- Remove forgot password ---- * /

#loginPage h1 {display: none} #loginPage .btnForgotPassword {display: none; }

body> div.skinHeader.skinHeader-withBackground.headroom.noHomeButtonHeader> div.headerTabs.sectionTabs> div> div> button: nth-child (1)> div, body> div.skinHeader.skinHeader-withBackground.headroom.noHomeButtonHeader> div .headerTabs.sectionTabs> div> div> button: nth-child (2)> div {display: none}

 

to remove the "forgot password" button

 

But unfortunately it has stopped working. Can anybody help me?

Link to comment
Share on other sites

  • Solution
Happy2Play

Do to page ids being removed from login page and the addition of manuallogin page, as it use to be just a form.

/*Remove Forgot Password on Login page*/
[data-type="ForgotPassword"] {display: none; }
/*Remove Forgot Password on Manual Login page*/
button.raised.cancel.block.btnForgotPassword.emby-button {display: none; }
  • Like 1
Link to comment
Share on other sites

igeoorge

 

Do to page ids being removed from login page and the addition of manuallogin page, as it use to be just a form.

/*Remove Forgot Password on Login page*/
[data-type="ForgotPassword"] {display: none; }
/*Remove Forgot Password on Manual Login page*/
button.raised.cancel.block.btnForgotPassword.emby-button {display: none; }

 

 

Hi @@Happy2Play

 

Could you help me remove these buttons inside the green square?
 
Thanks a lot for the help!
 
Sem-t-tulo.png
Link to comment
Share on other sites

Happy2Play

 

Hi @@Happy2Play

 

Could you help me remove these buttons inside the green square?
 
Thanks a lot for the help!
 
Sem-t-tulo.png

 

 

Something like this.

div.dynamicRoutes > div > div > button:nth-child(-n+4) {display: none; }
  • Like 1
Link to comment
Share on other sites

igeoorge
The Code has greatly reduced. Thank you!

 

If you have some time, please, one last help.

 

My code to remove this box is not working.

 

button [data-id = "removefromcollection"] {display: none; }

button [data-id = "addtocollection"] {display: none; }

button [data-id = "groupvideos"] {display: none; }

button.btnNewCollection {display: none; }

button [data-id = "addtoplaylist"] {display: none; }

 

5de97b96bd046_asas.png

 


How can I remove it?

Link to comment
Share on other sites

Happy2Play

 

The Code has greatly reduced. Thank you!
 
If you have some time, please, one last help.
 
My code to remove this box is not working.
 
button [data-id = "removefromcollection"] {display: none; }
button [data-id = "addtocollection"] {display: none; }
button [data-id = "groupvideos"] {display: none; }
button.btnNewCollection {display: none; }
button [data-id = "addtoplaylist"] {display: none; }
 
5de97b96bd046_asas.png
 
How can I remove it?

 

 

Here is the multi-select

label[data-action="multiselect"] {display: none;}

Are you saying you have issues with this code also? 

 

 

 

button [data-id = "removefromcollection"] {display: none; }

button [data-id = "addtocollection"] {display: none; }

button [data-id = "groupvideos"] {display: none; }

button.btnNewCollection {display: none; }

button [data-id = "addtoplaylist"] {display: none; }

 

If so, there are added spaces where there shouldn't be.

button[data-id="removefromcollection"] {display: none; }
button[data-id="addtocollection"] {display: none; }
button[data-id="groupvideos"] {display: none; }
button.btnNewCollection {display: none; }
button[data-id="addtoplaylist"] {display: none; }
  • Like 1
Link to comment
Share on other sites

Happy2Play

Hi,

This CSS didn't work for me ...

 

label[data-action=multiselect] {display: none;}

 

Don't see why, as that is what it is.

 

 

<label data-action="multiselect" data-id="xxxxxxx7148b4d7c20a207c789xxxxxx" data-serverid="xxxxxx53cc0d4f4fb6c0480ef3xxxxx" class="chkCardSelectContainer cardOverlayButton cardOverlayButton-hover itemAction emby-checkbox-label"><input class="chkCardSelect emby-checkbox" is="emby-checkbox" type="checkbox" data-focushelper="false" data-embycheckbox="true"><span class="checkboxOutline"><i class="md-icon checkboxIcon checkboxIcon-checked"></i><i class="md-icon checkboxIcon checkboxIcon-unchecked"></i></span></label>

 

 

But these should work also

label.chkCardSelectContainer.cardOverlayButton.cardOverlayButton-hover.itemAction.emby-checkbox-label {display: none;}

or

div.cardOverlayContainer label {display: none;}

or

div.cardOverlayContainer label.emby-checkbox-label {display: none;}
  • Like 1
Link to comment
Share on other sites

CarlosLima

 

 

Don't see why, as that is what it is.

 

[...]

 

 

But these should work also

label.chkCardSelectContainer.cardOverlayButton.cardOverlayButton-hover.itemAction.emby-checkbox-label {display: none;}

or

div.cardOverlayContainer label {display: none;}

or

div.cardOverlayContainer label.emby-checkbox-label {display: none;}

 

I also tried the 3 new codes above and in all of them, same result, the checkboxes are still there using ES 4.3.0.30

Link to comment
Share on other sites

Happy2Play

I also tried the 3 new codes above and in all of them, same result, the checkboxes are still there using ES 4.3.0.30

Have you tested with only one of those codes in your Custom CSS box (removing all other css code)?

Edited by Happy2Play
Link to comment
Share on other sites

Happy2Play

Exactly this way

Can you post all your custom css or pm if you prefer.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...