Kodi Community Forum
Movie Home Screen, How To Display All Movie Sets, Not Only 15? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260)
+---- Thread: Movie Home Screen, How To Display All Movie Sets, Not Only 15? (/showthread.php?tid=376291)



Movie Home Screen, How To Display All Movie Sets, Not Only 15? - Glizando - 2024-02-16

Hi there

At bottom of movie home screen, there's the line with movie sets.
I figured it out that following code at Home.xml displays these movie sets:
Code:
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
    <param name="content_path" value="videodb://movies/sets/"/>
    <param name="widget_header" value="$LOCALIZE[31075]"/>
    <param name="widget_target" value="videos"/>
    <param name="sortby" value="random"/>
    <param name="list_id" value="5600"/>
    <param name="onclick_condition" value="true"/>
    <param name="onclick_action" value="$VAR[MovieSetOnClickActionVar]"/>
</include>

Unfortunately only 15 movie sets are displayed there.
Is there any way to disable this limitation, so that all movie sets of my library were shown?


RE: Movie Home Screen, How To Display All Movie Sets, Not Only 15? - Hitcher - 2024-02-16

Includes_Home.xml line 75:

<content sortby="$PARAM[sortby]" sortorder="$PARAM[sortorder]" target="$PARAM[widget_target]" limit="15" browse="$PARAM[browse_mode]">$PARAM[content_path]</content>

Change the limit there.


RE: Movie Home Screen, How To Display All Movie Sets, Not Only 15? - Glizando - 2024-02-18

Thanks a lot.
Now I can see all my movie sets there.
Smile