2018-06-25, 15:57
These should work.
As requested
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="2" type="filter" visible="True">
<label>Kids Series</label>
<icon>DefaultTVShows.png</icon>
<content>tvshows</content>
<match>all</match>
<rule field="path" operator="contains">
<value>mnt/nfs/media/tv/kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
or bit more general
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="2" type="filter" visible="True">
<label>Kids Series</label>
<icon>DefaultTVShows.png</icon>
<content>tvshows</content>
<match>all</match>
<rule field="path" operator="contains">
<value>tv/kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
even more general
<node order="2" type="filter" visible="True">
<label>Kids Series</label>
<icon>DefaultTVShows.png</icon>
<content>tvshows</content>
<match>all</match>
<rule field="path" operator="contains">
<value>kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
And for Movies
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="2" type="filter" visible="True">
<label>Kids Movies</label>
<icon>DefaultMovies.png</icon>
<content>movies</content>
<match>all</match>
<rule field="path" operator="contains">
<value>kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
Hope that helps
Cheers.
As requested
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="2" type="filter" visible="True">
<label>Kids Series</label>
<icon>DefaultTVShows.png</icon>
<content>tvshows</content>
<match>all</match>
<rule field="path" operator="contains">
<value>mnt/nfs/media/tv/kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
or bit more general
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="2" type="filter" visible="True">
<label>Kids Series</label>
<icon>DefaultTVShows.png</icon>
<content>tvshows</content>
<match>all</match>
<rule field="path" operator="contains">
<value>tv/kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
even more general
<node order="2" type="filter" visible="True">
<label>Kids Series</label>
<icon>DefaultTVShows.png</icon>
<content>tvshows</content>
<match>all</match>
<rule field="path" operator="contains">
<value>kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
And for Movies
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="2" type="filter" visible="True">
<label>Kids Movies</label>
<icon>DefaultMovies.png</icon>
<content>movies</content>
<match>all</match>
<rule field="path" operator="contains">
<value>kids</value>
</rule>
<limit>20</limit>
<order direction="descending">dateadded</order>
</node>
Hope that helps
Cheers.