Jellyfin Forum
'Community Rating' and 'Critics Rating' - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Development (https://forum.jellyfin.org/f-development)
+--- Forum: Feature Requests (https://forum.jellyfin.org/f-feature-requests)
+--- Thread: 'Community Rating' and 'Critics Rating' (/t-community-rating-and-critics-rating)

Pages: 1 2


'Community Rating' and 'Critics Rating' - MoonOverMiami - 2024-03-26

Please set a tag where users can disable/hide seeing Community Rating and Critics Rating. You did this for TV Shows but not for Movies. This is similar to being able to toggle off 'Tagline' in movies which is already implemented.

Some users do not care what the Community or Critics think of a movie. It's annoying to have Jellyfin require users to see that Critics tell us they don't like our favorite movies.

   


RE: 'Community Rating' and 'Critics Rating' - PrincipalMinipig - 2024-03-31

Agreed. It should be easier to curate what metadata is used in our libraries. Ratings especially should be disable-able. I don't have any interest in anyone else's opinions about the media in my personal library and I'd appreciate being able to prevent that. Especially when certain apps don't give you a way of customizing the UI.


RE: 'Community Rating' and 'Critics Rating' - MoonOverMiami - 2024-05-16

Any idea when this Feature will be enabled?
Thanks!


RE: 'Community Rating' and 'Critics Rating' - Topomov - 2024-05-20

(2024-05-16, 04:03 AM)MoonOverMiami Wrote: Any idea when this Feature will be enabled?
Thanks!

You should be able to add the following to your custom CSS in order to hide the rating from your media page.

Code:
.starRatingContainer.mediaInfoItem {
  display: none;
}



RE: 'Community Rating' and 'Critics Rating' - Efficient_Good_5784 - 2024-05-20

(2024-05-20, 12:35 AM)Topomov Wrote: You should be able to add the following to your custom CSS in order to hide the rating from your media page.

Code:
.starRatingContainer.mediaInfoItem {
  display: none;
}
That CSS code will only hide the star rating, it will leave the tomato rating on the OSD.

This is the correct full CSS code that will hide both:
Code:
.starRatingContainer.mediaInfoItem,
.mediaInfoCriticRating.mediaInfoCriticRatingFresh {
     display: none;
}



RE: 'Community Rating' and 'Critics Rating' - MoonOverMiami - 2024-05-20

Thank you Efficient_Good_5784. Great info if... I knew how to create Custom CSS code. I googled it and found a bunch of useless videos on "Get the best Jellyfin plugins!" which does not help.

If you have a JF Custom CSS tutorial link, I'd appreciate it. If not, the JF team already did this for TV Shows a year ago. Should be simple to do it for Movies as well. Not sure why the Hide/Disable Ratings feature was released for just TV Shows.
Thanks again.


RE: 'Community Rating' and 'Critics Rating' - Efficient_Good_5784 - 2024-05-20

I forgot to include the rotten scores as well. Apparently the tomatoes and the rotten scores each have a different CSS element.

This should be the final correct CSS code to hide them:

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

So to explain how to use this, just copy it, then simply paste it in "Dashboard > General > Custom CSS code" and save at the bottom of the page. Then reload your browser.
That's it. You don't have to do anything else with it.

If you ever want to learn, the way I customized my server was by using "ctrl+shift+c" and F12 on my browser. On Chrome or Firefox, it brings up the CSS code for the page.
You can play around with things, add code to give color or resize things. You would basically then copy your code from this and paste in Jellyfin's CSS setting to have it stick.
I believe there should be video intros online about how to mess around with modifying CSS code and using browser F12 to look at things.


RE: 'Community Rating' and 'Critics Rating' - wanderman - 2024-05-21

What would be the css to only allow to display user ratings from rotten tomatoes ?


RE: 'Community Rating' and 'Critics Rating' - 34626 - 2024-05-21

It should be both server and user side option, but i agree that a Jellyfin community based metadata voting system that might also be able for Jellyfin to priority the choosen posters etc. but maby also include new images or metadata - It could also be at library level, if its wanted or not Smiling-face


RE: 'Community Rating' and 'Critics Rating' - Efficient_Good_5784 - 2024-05-21

(2024-05-21, 02:27 PM)wanderman Wrote: What would be the css to only allow to display user ratings from rotten tomatoes ?
You would only include the line with the star ratings.

So it would be:
Code:
.starRatingContainer.mediaInfoItem {
     display: none;
}