(2022-07-07, 23:45)Bungee_G Wrote: So I would have to create a smart playlist for the Movies item and also for the ANIME item ?
No. You already have your anime menu item which shows anime. All you want now is to remove anime from the
Movies menu listing.
Create a
Smart playlist (wiki) with the rule
is not or
does not contain (whichever works for you) for the source you want to exclude.
Copy that playlist to the
Playlists folder in the skin.estuary folder.
In the
home.xml file at line 927 you will see the following.
xml:
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/,return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(Videos,sources://video/,return)</onclick>
Change it so the <onclick lines are changed as follows. Obviously change the filename of the playlist to the one you have created.
xml:
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,special://skin/playlists/no_scifi_movies.xsp",return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,special://skin/playlists/no_scifi_movies.xsp,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(Videos,special://skin/playlists/no_scifi_movies.xsp,return)</onclick>
I'm not a skinner, so if I have made a mistake, hopefully @
ontap or someone else might spot it.