2018-05-26, 19:33
(2018-05-26, 18:21)sflix Wrote:(2018-05-26, 08:46)jurialmunkey Wrote:No worries. Yes it does.(2018-05-18, 20:51)sflix Wrote: @jurialmunkey
Not movies per se, its for my smart play lists. I don't like to look at carpet icons. I'm just that big of a thick head.
I wanted a nice way to display the smart playlist, so I tried to make an addon.
I couldn't make the addon work properly with the smart playlist, so I just mounted an emby server, to display the lists.
That way I managed to put art on my smart playlists and use them as menus. I have all of the images of the collections, but they are 512x512.
Sorry for the delay getting back to you.
Does this mounted emby server have content type set to "sets"?
Okay, well you can change which content types are excluded from the big square view by editing: Includes_View_Posters.xml
Big square view is id="503" so you will need to find the panel control with that id in that file and then change the visible condition which looks like this:
Code:
<visible>[!Container.Content(movies) + !Container.Content(tvshows) + !Container.Content(seasons) + !Container.Content(songs) + !Container.Content(videos) + !Container.Content(episodes) + !Container.Content(sets) + !Container.Content(actors) + !Container.Content(images)] | $EXP[Exp_IsPluginAdvancedLauncher]</visible>
From that line, you need to remove:
Code:
+ !Container.Content(sets)