![]() |
SOLVED: Trying to set up NFO file for TV show display order - 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: SOLVED: Trying to set up NFO file for TV show display order (/t-solved-trying-to-set-up-nfo-file-for-tv-show-display-order) |
Trying to set up NFO file for TV show display order - akirby83 - 2025-03-17 I'm trying to set up an .nfo file at the root of a show folder to set the display order to DVD, instead of having to alter the show's metadata after I import it. This is what I'm trying but it just results in the display order being set to blank. No combination of capitalization or quotes results in it working. I've read the Jellyfin documentation on NFO files but it's pretty sparse so I'm sure there's some critical information I'm missing here. Here is my tvshow.nfo code: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <tvshow> <DisplayOrder>DVD</DisplayOrder> </tvshow> RE: Trying to set up NFO file for TV show display order - TheDreadPirate - 2025-03-17 Are you using NFOs as the exclusive provider for metadata? Or are you trying to set the display order via NFO? RE: Trying to set up NFO file for TV show display order - theguymadmax - 2025-03-18 (2025-03-17, 06:13 PM)akirby83 Wrote: I'm trying to set up an .nfo file at the root of a show folder to set the display order to DVD, instead of having to alter the show's metadata after I import it. This is what I'm trying but it just results in the display order being set to blank. No combination of capitalization or quotes results in it working. I've read the Jellyfin documentation on NFO files but it's pretty sparse so I'm sure there's some critical information I'm missing here. Here is my tvshow.nfo code: Case matters, try this: <displayorder>dvd</displayorder> Other options: originalAirDate absolute digital storyArc production tv RE: Trying to set up NFO file for TV show display order - akirby83 - 2025-03-18 (2025-03-17, 09:16 PM)TheDreadPirate Wrote: Are you using NFOs as the exclusive provider for metadata? Or are you trying to set the display order via NFO? Just for things that don't get set correctly for certain shows by default like episode order. RE: Trying to set up NFO file for TV show display order - akirby83 - 2025-03-18 (2025-03-18, 12:53 AM)theguymadmax Wrote:(2025-03-17, 06:13 PM)akirby83 Wrote: I'm trying to set up an .nfo file at the root of a show folder to set the display order to DVD, instead of having to alter the show's metadata after I import it. This is what I'm trying but it just results in the display order being set to blank. No combination of capitalization or quotes results in it working. I've read the Jellyfin documentation on NFO files but it's pretty sparse so I'm sure there's some critical information I'm missing here. Here is my tvshow.nfo code: That did it! So I did start out with lower case in "displayorder" but I must not have done DVD in lower case too. I did try lower case dvd but only after I changed to DisplayOrder. |