Jellyfin Forum
Collection show total of items, rather than number of unwatched? - 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: Collection show total of items, rather than number of unwatched? (/t-collection-show-total-of-items-rather-than-number-of-unwatched)



Collection show total of items, rather than number of unwatched? - j0rdan - 2024-09-03

Hi all, pretty new to Jellyfin, jumping back on the self-hosting of my own media horse after a long absence.

I'm setting up my library, and I'm using collections to group together movie franchises and series. I see it shows a little badge in the upper right of the card. This shows the number of un-watched items within that collection.

Can I make it so it instead shows total number of films in the collection, or remove the badge entirly?


RE: Collection show total of items, rather than number of unwatched? - Ted Hinklater - 2024-09-03

(2024-09-03, 10:08 AM)j0rdan Wrote: Can I make it so it instead shows total number of films in the collection, or remove the badge entirly?

can't do anything about the value in the count indicator with css, but to hide it for collections add this to your CSS box under Dashboard > General:

Code:
/* Hide Watched Counter on Collections */
[data-type="BoxSet"] .countIndicator { display: none; }