Kodi Community Forum
Wall view for video playlists - 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: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Conq (https://forum.kodi.tv/forumdisplay.php?fid=210)
+----- Thread: Wall view for video playlists (/showthread.php?tid=205649)



Wall view for video playlists - cu_shane - 2014-10-03

I'm using video playlists to show things like unwatched movies. In Conq the Wall view is not available for the video playlists. It is available for the default movie view. How can I make the wall view available? I'm assuming I'll have to modify an xml file from addons\skin.conq\16x9 but I can't figure it out. I think Viewtype53 is the wall view.


RE: Wall view for video playlists - kristle - 2014-10-05

In viewtype53.xml you need to change the visibility condition:

Code:
<!-- Thumbs -->
            <control type="panel" id="53">
                <left>150</left>
                <top>170</top>
                <width>1620</width>
                <height>666</height>
                <onleft>63</onleft>
                <onright condition="!Skin.HasSetting(KioskMode)">3001</onright>
                <onup>53</onup>
                <ondown>53</ondown>
                <pagecontrol>63</pagecontrol>
                <preloaditems>4</preloaditems>
                <viewtype label="Wall">icon</viewtype>
                <scrolltime tween="sine" easing="out">240</scrolltime>
                <visible>SubString(Container.FolderPath,videodb://movies/titles/) | SubString(Container.FolderPath,videodb://tvshows/titles/)</visible>

ie the last line. Try:

<visible>SubString(Container.FolderPath,videodb://movies/titles/) | SubString(Container.FolderPath,videodb://tvshows/titles/) | SubString(Container.FolderPath,special://profile/playlists/</visible>


RE: Wall view for video playlists - cu_shane - 2014-10-06

Thanks! That worked perfectly!