Is the sort by sort name instead of pretty name working correctly? I have that set and it seems to sort correctly in configuration, but not when running the plugin. Any ideas what I might be doing wrong?
series<;><;><Series.SortName>;asc<;><nextStep>season<;><;><Season.seasonIndex>;asc<;><nextStep>episode<;><;><Episode.EpisodeIndex>;asc<;>
I had exactly the same requirement as all of the above, and this is how I fixed it.
I manually changed this is the database using the SQLite Database Browser.exe which hides in <PATH TO MEDIAPORTAL>MediaPortal\Docs.
Make sure you have exited MP and then launch the exe and open TVSeriesDatabase4.db3 from the database folder. Go to the Browse Data tab, then choose the Views table. These are all the available views. If you don't want to lose the default ones then create a new one (New Record) Call it what you want - the important stuff is - ID field is unique, so one more than the previous one; enabled field should be 1; viewConfig is the important one. This is what I use for the ALL view.
Code:series<;><;><Series.SortName>;asc<;><nextStep>season<;><;><Season.seasonIndex>;asc<;><nextStep>episode<;><;><Episode.EpisodeIndex>;asc<;>
The only variance to the standard is that <Series.Pretty_Name> is replaced by <Series.SortName>. I did the same change in my Genre view. Don't forget to save the database when you exit, then go back into MP and see your changes in action.
![]()
![]()