• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Development Feature Requests 'Community Rating' and 'Critics Rating'

    Pages (2): 1 2 Next »

     
    • 0 Vote(s) - 0 Average

    'Community Rating' and 'Critics Rating'

    Disable/Hide 'CommunityRating' and 'Critics Rating'
    MoonOverMiami Away

    Junior Member

    Posts: 28
    Threads: 10
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #1
    2024-03-26, 05:07 AM
    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.

       
    1
    PrincipalMinipig
    Offline

    Junior Member

    Posts: 3
    Threads: 0
    Joined: 2023 Jul
    Reputation: 0
    Country:United States
    #2
    2024-03-31, 02:24 PM
    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.
    MoonOverMiami Away

    Junior Member

    Posts: 28
    Threads: 10
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #3
    2024-05-16, 04:03 AM
    Any idea when this Feature will be enabled?
    Thanks!
    Topomov
    Offline

    Junior Member

    Posts: 32
    Threads: 2
    Joined: 2023 Jul
    Reputation: 1
    #4
    2024-05-20, 12:35 AM
    (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;
    }
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #5
    2024-05-20, 02:12 AM
    (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;
    }
    MoonOverMiami Away

    Junior Member

    Posts: 28
    Threads: 10
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #6
    2024-05-20, 03:24 AM (This post was last modified: 2024-05-20, 03:25 AM by MoonOverMiami. Edited 1 time in total.)
    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.
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #7
    2024-05-20, 04:03 AM
    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.
    wanderman
    Offline

    Junior Member

    Posts: 15
    Threads: 5
    Joined: 2024 May
    Reputation: 0
    Country:Germany
    #8
    2024-05-21, 02:27 PM
    What would be the css to only allow to display user ratings from rotten tomatoes ?
    34626
    Offline

    Member

    Posts: 172
    Threads: 36
    Joined: 2023 Jul
    Reputation: 0
    Country:Denmark
    #9
    2024-05-21, 04:02 PM
    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
    Serv: N5105 - 32GB RAM, 1 WD Red SA500 2TB, 2 8TB, 2 4TB WD Red Plus, LC-35U3-C-HUB
    OS: Debian
    Clients: Pi4 with LibreELEC + JellyCon and Jellyfin Media Player
    Network: 2 TP-Link AX23, OpenWRT mesh 802.11s and 1 Gbit
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #10
    2024-05-21, 04:17 PM (This post was last modified: 2024-05-21, 04:21 PM by Efficient_Good_5784. Edited 2 times in total.)
    (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;
    }
    Pages (2): 1 2 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode