crisbr002 1 Posted February 6, 2021 Posted February 6, 2021 Hi, someone can help me to remove some buttons? 1 - I would like to put the Donwload out of "more" buttons, it's possible?, and after remove "more" button. 2 - remove Played and Favorite 3- remove Favorite option 4- remove Lost password from all screens 5 - remove Settings from normal users 6 - remove Pictures 7- remove this too .. I would like to thank everyone who developed the emby, it is really good. thank you
Happy2Play 9446 Posted February 6, 2021 Posted February 6, 2021 1 hour ago, crisbr002 said: 1 - I would like to put the Donwload out of "more" buttons, it's possible?, and after remove "more" button. Can't be done with css that I know of. https://emby.media/community/index.php?/topic/62181-btnsyncdownload 1 hour ago, crisbr002 said: 2 - remove Played and Favorite div.cardOverlayButton-br button[title="Played"], div.cardOverlayButton-br button[title="Favorite"] {display: none;} 1 hour ago, crisbr002 said: 3- remove Favorite option 6 - remove Pictures These header tabs can only be removed via their script files as all the tabs are the same with only a index number difference and removing a index number in one page will remove a different tab on another page, 1 hour ago, crisbr002 said: 4- remove Lost password from all screens /*Login page*/ div[data-type="ForgotPassword"] {display: none;} /*Manual login page*/ button.btnForgotPassword {display: none !important;} 1 hour ago, crisbr002 said: 5 - remove Settings from normal users a.navMenuOption[title="Settings"]:not([data-navmenuid="/dashboard/settings"]) {display: none !important;} 2 hours ago, crisbr002 said: 7- remove this too .. . button.btnHomeScreenSettings {display: none;} 1
crisbr002 1 Posted February 7, 2021 Author Posted February 7, 2021 Hey @Happy2Play, thx for your help. 1- I don't think they have succeeded yet.. 2- not worked 3 and 6 - ah, right 4 - it worked 5 - not worked 7- it worked Have another solution for these items that not worked? thx again
Happy2Play 9446 Posted February 7, 2021 Posted February 7, 2021 Sorry will have to verify code is different between release and beta, as I used beta. So if this is the case note when 4.6 is release you will have to update css. 1
crisbr002 1 Posted February 7, 2021 Author Posted February 7, 2021 44 minutes ago, Happy2Play said: Sorry will have to verify code is different between release and beta, as I used beta. So if this is the case note when 4.6 is release you will have to update css. ahh ok, no problem
Solution Happy2Play 9446 Posted February 7, 2021 Solution Posted February 7, 2021 2. I have no issue with the code in release or beta. But here are a couple of options. div.cardOverlayButton-br button[title="Played"], div.cardOverlayButton-br button[title="Favorite"] {display: none;} or button.cardOverlayButton[title="Played"], button.cardOverlayButton[title="Favorite"] {display: none;} or div.cardOverlayContainer [title="Played"], div.cardOverlayContainer [title="Favorite"] {display: none;} 5. Works for me in both release and beta, but is not working as I wanted as it removes from the dashboard also do to difference in code. a.navMenuOption[title="Settings"]:not([data-navmenuid="/dashboardgeneral.html"]) {display: none !important;} Now if the issue is trying to target user vs admin with css that is not possible. It is all or none to my knowledge. 1
crisbr002 1 Posted February 7, 2021 Author Posted February 7, 2021 I found out why it didn't work, I had to put the words in the language I use. Now it worked. thx dude 1
osama12345 0 Posted September 29, 2024 Posted September 29, 2024 The codes do not work for me, please help me
osama12345 0 Posted September 29, 2024 Posted September 29, 2024 On 2/7/2021 at 7:28 PM, crisbr002 said: I found out why it didn't work, I had to put the words in the language I use. Now it worked. thx dude What do you mean by that I don't understand
Happy2Play 9446 Posted September 29, 2024 Posted September 29, 2024 6 hours ago, osama12345 said: What do you mean by that I don't understand Depending on your setup language some areas require your translation vs my English text. But all of this is easy enough to see in the browser debug console inspecting the elements you are trying to change.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now