Reference:
Code:
/usr/share/kodi/addons/skin.estuary/playlists/unwatched_tvshows.xsp
/usr/share/kodi/addons/skin.estuary/playlists/unwatched_movies.xsp
Is the limit of maximum 15 in these 2 files enforced by the Estuary skin or by Kodi?
Why is there a hard limit of 15?
Those are the files that I mention under reference in my first post.
When I changed the limit to anything higher than 15 (even just 16) only 15 shows/movies are displayed. That's why I opened the thread.
you need to edit in Includes_Home.xml
look for
target="$PARAM[widget_target]" limit="
<param name="widget_limit">
In file
/usr/share/kodi/addons/skin.estuary/xml/Includes_Home.xml I found the following line. In which I changed
limit="15", into
limit="100".
xml:
<content sortby="$PARAM[sortby]" sortorder="$PARAM[sortorder]" target="$PARAM[widget_target]" limit="15">$PARAM[content_path]</content>
Then in file
/usr/share/kodi/addons/skin.estuary/playlists/unwatched_tvshows.xsp I changed
<limit>15</limit>, into
<limit>25</limit>
That worked. Now 23 TV shows are showing up under Unwatched TV Shows. Thanks very much for helping out. All of you. And Happy New Year to all. All the best wishes.
EDIT: How do I mark this thread as solved?