Kodi Community Forum

Full Version: Wall view for video playlists
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
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>
Thanks! That worked perfectly!