Jellyfin Forum
J Media Player imbd rating - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: J Media Player imbd rating (/t-j-media-player-imbd-rating)

Pages: 1 2


J Media Player imbd rating - atma_weaponvi - 2024-06-04

Hi,

With the new update to the media player they introduced so new additions to the main video player screen like notches for the chapter selction, a favourite button and the IMBD star and rating. I really like the first two, but I find the IMBD rating really distracting and unpleasant to see. Any way to remove it that you know of other than rolling back to previous?

Thanks,
Atma


RE: J Media Player imbd rating - Efficient_Good_5784 - 2024-06-04

You can hide all ratings by using this CSS code:

Code:
.starRatingContainer.mediaInfoItem,
.mediaInfoCriticRating.mediaInfoCriticRatingFresh,
.mediaInfoCriticRating.mediaInfoCriticRatingRotten {
     display: none;
}

Note that this will hide the ratings from everywhere they appear in the server. As in, they will also disappear from the movie/show descriptions.


RE: J Media Player imbd rating - atma_weaponvi - 2024-06-04

(2024-06-04, 04:08 PM)Efficient_Good_5784 Wrote: You can hide all ratings by using this CSS code:

Code:
.starRatingContainer.mediaInfoItem,
.mediaInfoCriticRating.mediaInfoCriticRatingFresh,
.mediaInfoCriticRating.mediaInfoCriticRatingRotten {
     display: none;
}

Note that this will hide the ratings from everywhere they appear in the server. As in, they will also disappear from the movie/show descriptions.

Thanks, that's a perfect solution for me. I'm a little new to inserting code, is there any easy way to explain to me how or where I have to add this script?

Appreciated,
Atma


RE: J Media Player imbd rating - TheDreadPirate - 2024-06-04

Dashboard > General > Custom CSS

Copy and paste what Efficient posted.

   


RE: J Media Player imbd rating - Efficient_Good_5784 - 2024-06-04

You can also paste it in:

Client Settings > Display > "Custom CSS Code"

Doing it there only applies to that client only (and not for everyone else).

There's even an option in this same page that lets you disable the server's custom theme so that you can use yours. It's useful if you're using someone else's server.


RE: J Media Player imbd rating - atma_weaponvi - 2024-06-04

Awesome, thanks so much everyone, the fix is working as expected!

Atma


RE: J Media Player imbd rating - whatever_namee - 2024-06-12

The issue is back again with the latest update, despite the custom CSS.
Honestly a bit annoying to implement a semi-controversial feature with no way to natively turn it off.

https://imgur.com/a/eSzywyf


RE: J Media Player imbd rating - Efficient_Good_5784 - 2024-06-12

(2024-06-12, 07:22 PM)whatever_namee Wrote: The issue is back again with the latest update, despite the custom CSS.
Honestly a bit annoying to implement a semi-controversial feature with no way to natively turn it off.

https://imgur.com/a/eSzywyf
Did you copy and paste the CSS code that I provided earlier in this thread? If so, that code still works. I tried it again right now on v10.9.6 and it does in fact remove the ratings.

From the screenshot, it looks like you did remove the rotten tomato (critics) rating, but not the community star rating. Maybe you missed something with the CSS when you pasted it in.
Could you provide a screenshot of how you entered the CSS code into the dashboard?


RE: J Media Player imbd rating - ThomasPGH - 2024-06-13

(2024-06-12, 07:22 PM)whatever_namee Wrote: Honestly a bit annoying to implement a semi-controversial feature with no way to natively turn it off.
I noticed this too today. It entirely eludes me what whoever implemented this "feature" thought of when they chucked this in.


RE: J Media Player imbd rating - whatever_namee - 2024-06-13

(2024-06-12, 09:46 PM)Efficient_Good_5784 Wrote:
(2024-06-12, 07:22 PM)whatever_namee Wrote: The issue is back again with the latest update, despite the custom CSS.
Honestly a bit annoying to implement a semi-controversial feature with no way to natively turn it off.

https://imgur.com/a/eSzywyf
Did you copy and paste the CSS code that I provided earlier in this thread? If so, that code still works. I tried it again right now on v10.9.6 and it does in fact remove the ratings.

From the screenshot, it looks like you did remove the rotten tomato (critics) rating, but not the community star rating. Maybe you missed something with the CSS when you pasted it in.
Could you provide a screenshot of how you entered the CSS code into the dashboard?

My screenshot shows the exact same paste as you posted earlier in this thread? (which worked last week).