Kodi Community Forum
Remove "Title" Text - 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: reFocus (https://forum.kodi.tv/forumdisplay.php?fid=72)
+----- Thread: Remove "Title" Text (/showthread.php?tid=137313)



Remove "Title" Text - cedricchase - 2012-08-01

http://i.imgur.com/s8nOc.jpg

hey xbmc/refocus gurus - i have been searching, and cannot find where i can possibly go about removing the "title" text next from the Movies, and TV Shows sections - as shown in the linked image. Any ideas and/or assistance would be greatly appreciated!


RE: Remove "Title" Text - Paul Salem - 2012-08-01

On Variables.xml , on the <!---WINDOW TITLES------> section, replace the following text:

Code:
<!--tvshows-->
        <value condition="Container.Content(tvshows) + SubString(Container.FolderPath,videodb)">$LOCALIZE[20343] [COLOR=Color2]$INFO[Container.FolderName][/COLOR]</value>
        <value condition="SubString(Container.FolderPath,videodb://2/) + !Container.Content(episodes)">$LOCALIZE[20343] [COLOR=Color2]$INFO[Container.FolderName][/COLOR]</value>

with the following:

Code:
<!--tvshows-->
        <value condition="Container.Content(tvshows) + SubString(Container.FolderPath,videodb)">$LOCALIZE[20343]</value>
        <value condition="SubString(Container.FolderPath,videodb://2/) + !Container.Content(episodes)">$LOCALIZE[20343]</value>



RE: Remove "Title" Text - cedricchase - 2012-08-02

oh wow, "Color2", it makes so much sense now! thank you so much, I would have never found this on my own.