2024-08-07, 11:18 AM
(This post was last modified: 2024-08-07, 11:38 AM by raulo1985. Edited 8 times in total.)
(2024-08-02, 10:49 AM)GorillaBasho Wrote: I don't remember which update it was, but why on Earth would you add the country tags like this? I can understand adding a 'country' field.
But I can't understand why its under tags, and more importantly why it was forced on to every file? Was it a mistake? If it wasn't then why isn't there a option to turn it off, and like everything else it should have been set to off by default.
I hate tags and it was a lot of work to clear the massive text walls of tags out of metadata and get Jellyfin to not add more, though it still regularly happens to random files and I'd have to manually remove them and set the file to never allow tag changes. And now you do this to me? I tried to clear the tags with TMM but they still appear in JF, only way is one at a time.
Why add this tag without an option to disable it, or wait and add it with the much requested mass tag feature?
Not a big deal, but very annoying. so toddler tantrum.
Not an expert by any means, but if you don’t like tags in general (although I agree it would be nice to have a setting to disable or enable them if you want), you could add this line to your css code in the general section of the dashboard. This should disable all the tags from the GUI regardless of the client, and not just the countries. The tags will still be there will all the metadata stored, it’s just that they won’t show up at the GUI (I understand that’s what you want):
Quote:.itemTags {
display: none;
}
And if you want to disable them only for an specific device type (like desktop, tv or mobile), you can add that device type to the line like this:
Quote:.layout-desktop .itemTags {
display: none;
}
Note: replace .layout-desktop for .layout-mobile or .layout-tv depending on the device you want this rule to be applied. If not added, the rule will be applied to all web based clients (unless the client has this rule overruled by its own css code). From my understanding, this won’t work with web not based clients (like Swiftfin).
Not sure if this is what you want, but didn’t hurt to throw my two cents.
PS: if you don’t want all tags to show up at the GUI, this way you wouldn’t have to worry about future metadata updates. Even if the tags metadata gets updated, they will never show up. Don’t know if there’s a css code to disable specific type of tags though (like only countries).