Kodi Community Forum
Replace Sets with Tags? - 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: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: Replace Sets with Tags? (/showthread.php?tid=191944)



Replace Sets with Tags? - Novin - 2014-04-10

Is it possible to replace Sets under Movies with Tags instead? I don't use sets by I do use tags.

Image


RE: Replace Sets with Tags? - Arzk - 2014-04-10

In IncludesHomeMenuItems.xml search for
Code:
<control type="button" id="90163">
   <include>ButtonHomeSubCommonValues</include>
   <label>20434</label>
   <onclick>ActivateWindow(Videos,MovieSets,return)</onclick>
   <visible>Library.HasContent(MovieSets)</visible>
</control>

Change it to this:
Code:
<control type="button" id="90163">
  <include>ButtonHomeSubCommonValues</include>
  <label>20459</label>
  <onclick>ActivateWindow(Videos,MovieTags,return)</onclick>
</control>
I don't know yet if it's possible to add a similar <visible> tag, but Library.HasContent(MovieTags) didn't seem to work.

Thanks by the way - I haven't even noticed Tags before but now I think I need them