![]() |
How to Remove All Tags - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: How to Remove All Tags (/t-how-to-remove-all-tags) |
How to Remove All Tags - MaxofGreatness - 2024-06-27 Hi. I am trying to figure out how to remove tags from all of my movies and prevent them from appearing in the first place. I believe that I got the later one fixed by removing the ability for TMDb to get tags for movies or tv shows, but I can't figure out the former. I don't see any folders in appdata that contains the tags for each movie, so I am a bit lost as to how to remove them all. Any help would be appreciated. Thx. RE: How to Remove All Tags - Efficient_Good_5784 - 2024-06-27 If you have NFOs enabled, the tags are saved directly into those. There's currently no way to remove them all at once. You'll have to go to each show and movie, then delete the tags from the metadata. Make sure to lock the tag field in the metadata so they don't reappear again. RE: How to Remove All Tags - TheDreadPirate - 2024-06-27 Finally found the last time someone asked this question. Apparently there is a SQL command to drop all tags. https://forum.jellyfin.org/t-bulk-remove-tags !!!!!MAKE A BACK UP OF YOUR DATABASE BEFORE ATTEMPTING THIS!!!!! RE: How to Remove All Tags - MaxofGreatness - 2024-06-28 I decided to take a different route to fix this issue due to me being on Unraid (don't know how to do SQL commands on unraid and its like 4am rn). I just fixed it by putting the following code into the custom ccs code section. .itemTags {display:none !important}; Just put that in there and it should work (might need to restart Jellyfin tho). It should work after that. RE: How to Remove All Tags - MaxofGreatness - 2025-01-05 Just an FYI for anyone who needs this again, or probably just future me when I have to fix Jellyfin again, this is the new code that will work. The code above no longer works. .itemTags {display:none !important;} Have a good day RE: How to Remove All Tags - Poepaaneenstokje - 2025-01-22 (2025-01-05, 08:53 PM)MaxofGreatness Wrote: Just an FYI for anyone who needs this again, or probably just future me when I have to fix Jellyfin again, this is the new code that will work. The code above no longer works. You are a lifesaver!!! Was just looking for this because some series and movies have adult tags that aren't even the case. |