Solved Is it possible to hide episode name titles?
#1
Video 
I would like if possible to remove the episode name from the kodi library, and replace it with the generic name of the episode:

Example: change the episode name
From:
1x01. Welcome to Farzar
1x02. The robot revolution
1x03. The great and mighty ozner
...

To:

1x01. Episode 1
1x02. Episode 2
1x03. Episode 3
...

Even modifying the file .xml, if it was not possible from the options, because I did not find it.
(confluence skin on kodi 19.4 matrix)

Thank you very much for your help 🙏
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply
#2
The episode title is a fixed piece of metadata, and one of the main reasons of retrieving metadata from the info provider. Also, the episode number is already available through the 1x01 indicator. So I'm just curious about this request?

Changing it should be relatively simple in one of the Confluence skin/xml files. I'm just not familiar with Confluence or Kodi skins in general. Others should be able to point you to the correct spot.
Reply
#3
@Klojum

The request lies in the fact that the main reason is to avoid the spoiler of the episode.

From the settings I have not found anything about it.

I hope to find a way to put the episodes without spoilers, that is, in a simple way without a name, and I don't understand why there isn't a basic setting to do it.

Acting in the scraper or XML, I hope someone can help me...




Thanks for the reply 🙏
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply
#4
Spoilers in the title?
Reply
#5
(2022-07-30, 22:00)Hitcher Wrote: Spoilers in the title?
of course,
The episode title name often shows the episode content itself.

one thing is to have: 1x01 "episode 1" another: 1x01 "name of what I show you"

@Hitcher
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply
#6
(2022-07-30, 22:14)alberto1998 Wrote: of course, The episode title name often shows the episode content itself.

I think you're being a little paranoid here. Actual spoilers will be in a plot description, in episode titles not so much.

By the way, you got the episodes wrong:
"The robot revolution" = 1x03
"The great and mighty ozner" = 1x08

Modifying the skin would still be the best option. Deleting all episode titles from all TV shows directly from the database is another option, albeit a crude one.
Reply
#7
@Klojum

I'm not paranoid, maybe this has never happened to you, but often the title contains important spoilers of the episode's content.

I think the best way is to modify a few lines of XML, to show less title names and instead only the numbers.

I'm waiting for someone who knows more ...
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply
#8
This is the code for ViewsFileMode.xml to display it in list mode -

xml:
<?xml version="1.0" encoding="UTF-8"?>
<includes>
<include name="CommonRootView">
<control type="group">
<visible>Control.IsVisible(50)</visible>
<include>VisibleFadeEffect</include>
<control type="list" id="50">
<left>70</left>
<top>78</top>
<width>690</width>
<height>561</height>
<onleft>2</onleft>
<onright>60</onright>
<onup>50</onup>
<ondown>50</ondown>
<viewtype label="535">list</viewtype>
<pagecontrol>60</pagecontrol>
<scrolltime>200</scrolltime>
<itemlayout height="40" width="580">
<control type="image">
<left>0</left>
<top>0</top>
<width>690</width>
<height>41</height>
<texture border="0,2,0,2">MenuItemNF.png</texture>
</control>
<control type="label">
<left>10</left>
<top>0</top>
<width>580</width>
<height>40</height>
<font>font13</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
<visible>!String.IsEqual(ListItem.DbType,episode)</visible>
</control>
<control type="label">
<left>10</left>
<top>0</top>
<width>580</width>
<height>40</height>
<font>font13</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Season,,x]$INFO[ListItem.Episode,,. ]$LOCALIZE[20359] $INFO[ListItem.Episode]</label>
<visible>String.IsEqual(ListItem.DbType,episode)</visible>
</control>
<control type="label">
<left>280</left>
<top>0</top>
<width>400</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>!Window.IsVisible(Videos)</visible>
</control>
<control type="label">
<left>220</left>
<top>0</top>
<width>400</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>Window.IsVisible(Videos)</visible>
<animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) | Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>
<control type="image">
<left>625</left>
<top>8</top>
<width>40</width>
<height>26</height>
<texture>$VAR[MediaInfoOverlayVar]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos) + [Container.Content(Movies) | Container.Content(Sets) | Container.Content(Episodes) | Container.Content(MusicVideos)]</visible>
</control>
<control type="image">
<left>665</left>
<top>14</top>
<width>16</width>
<height>16</height>
<texture>OverlayWatching.png</texture>
<visible>Window.IsVisible(Videos) + ListItem.IsResumable</visible>
</control>
<control type="image">
<left>665</left>
<top>14</top>
<width>20</width>
<height>16</height>
<texture>$INFO[ListItem.Overlay]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos)</visible>
</control>
</itemlayout>
<focusedlayout height="40" width="580">
<control type="image">
<left>0</left>
<top>0</top>
<width>690</width>
<height>41</height>
<texture border="0,2,0,2">MenuItemNF.png</texture>
<visible>!Control.HasFocus(50)</visible>
<include>VisibleFadeEffect</include>
</control>
<control type="image">
<left>0</left>
<top>0</top>
<width>690</width>
<height>41</height>
<texture border="0,2,0,2">MenuItemFO.png</texture>
<visible>Control.HasFocus(50)</visible>
<include>VisibleFadeEffect</include>
</control>
<control type="image">
<left>490</left>
<top>5</top>
<width>200</width>
<height>31</height>
<texture border="0,0,14,0">MediaItemDetailBG.png</texture>
<visible>Control.HasFocus(50) + !String.IsEmpty(ListItem.Label2)</visible>
</control>
<control type="label">
<left>10</left>
<top>0</top>
<width>580</width>
<height>40</height>
<font>font13</font>
<textcolor>white</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
<visible>!String.IsEqual(ListItem.DbType,episode)</visible>
</control>
<control type="label">
<left>10</left>
<top>0</top>
<width>580</width>
<height>40</height>
<font>font13</font>
<textcolor>white</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Season,,x]$INFO[ListItem.Episode,,. ]$LOCALIZE[20359] $INFO[ListItem.Episode]</label>
<visible>String.IsEqual(ListItem.DbType,episode)</visible>
</control>
<control type="label">
<left>280</left>
<top>0</top>
<width>400</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>!Window.IsVisible(Videos)</visible>
</control>
<control type="label">
<left>220</left>
<top>0</top>
<width>400</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>Window.IsVisible(Videos)</visible>
<animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) | Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>
<control type="image">
<left>625</left>
<top>8</top>
<width>40</width>
<height>26</height>
<texture>$VAR[MediaInfoOverlayVar]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos) + [Container.Content(Movies) | Container.Content(Sets) | Container.Content(Episodes) | Container.Content(MusicVideos)]</visible>
</control>
<control type="image">
<left>665</left>
<top>14</top>
<width>16</width>
<height>16</height>
<texture>OverlayWatching.png</texture>
<visible>Window.IsVisible(Videos) + ListItem.IsResumable</visible>
</control>
<control type="image">
<left>665</left>
<top>14</top>
<width>20</width>
<height>16</height>
<texture>$INFO[ListItem.Overlay]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos)</visible>
</control>
</focusedlayout>
</control>
<control type="scrollbar" id="60">
<left>760</left>
<top>85</top>
<width>25</width>
<height>550</height>
<texturesliderbackground border="0,14,0,14">ScrollBarV.png</texturesliderbackground>
<texturesliderbar border="0,14,0,14">ScrollBarV_bar.png</texturesliderbar>
<texturesliderbarfocus border="0,14,0,14">ScrollBarV_bar_focus.png</texturesliderbarfocus>
<textureslidernib>ScrollBarNib.png</textureslidernib>
<textureslidernibfocus>ScrollBarNib.png</textureslidernibfocus>
<onleft>50</onleft>
<onright>2</onright>
<showonepage>false</showonepage>
<orientation>vertical</orientation>
<visible>Control.IsVisible(50)</visible>
</control>
<control type="group">
<depth>DepthContent-</depth>
<left>850</left>
<top>100</top>
<visible>Control.IsVisible(50)</visible>
<control type="image">
<left>0</left>
<top>0</top>
<width>360</width>
<height>540</height>
<aspectratio aligny="bottom">keep</aspectratio>
<fadetime>IconCrossfadeTime</fadetime>
<texture background="true">$VAR[PosterThumb]</texture>
<bordertexture border="8">ThumbShadow.png</bordertexture>
<bordersize>8</bordersize>
</control>
<control type="image">
<left>8</left>
<top>532</top>
<width>344</width>
<height>524</height>
<aspectratio aligny="top">keep</aspectratio>
<fadetime>IconCrossfadeTime</fadetime>
<texture diffuse="diffuse_mirror3.png" flipy="true" background="true">$VAR[PosterThumb]</texture>
</control>
</control>
</control>
</include>
<include name="ThumbnailView">
<control type="group">
<visible>Control.IsVisible(500)</visible>
<include>VisibleFadeEffect</include>
<control type="panel" id="500">
<left>90</left>
<top>80</top>
<width>1080</width>
<height>558</height>
<onleft>2</onleft>
<onright>60</onright>
<onup>500</onup>
<ondown>500</ondown>
<viewtype label="21371">list</viewtype>
<pagecontrol>60</pagecontrol>
<scrolltime>200</scrolltime>
<preloaditems>2</preloaditems>
<itemlayout condition="!Container.Content(Movies) + !Container.Content(Seasons) + !Container.Content(TVShows) + !Container.Content(Sets)" height="186" width="216">
<control type="image">
<left>1</left>
<top>0</top>
<width>214</width>
<height>160</height>
<bordertexture border="5">button-nofocus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$INFO[Listitem.Icon]</texture>
<aspectratio>keep</aspectratio>
<visible>!Container.Content(Episodes)</visible>
</control>
<control type="image">
<left>1</left>
<top>0</top>
<width>214</width>
<height>160</height>
<aspectratio>scale</aspectratio>
<bordertexture border="5">button-nofocus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$INFO[Listitem.Icon]</texture>
<visible>Container.Content(Episodes)</visible>
</control>
<control type="label">
<left>8</left>
<top>160</top>
<width>200</width>
<height>25</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<info>ListItem.Label</info>
</control>
<control type="image">
<left>170</left>
<top>130</top>
<width>30</width>
<height>30</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.Overlay]</texture>
</control>
</itemlayout>
<focusedlayout condition="!Container.Content(Movies) + !Container.Content(Seasons) + !Container.Content(TVShows) + !Container.Content(Sets)" height="186" width="216">
<control type="image">
<left>1</left>
<top>0</top>
<width>214</width>
<height>160</height>
<bordertexture border="5">folder-focus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$INFO[Listitem.Icon]</texture>
<aspectratio>keep</aspectratio>
<visible>!Container.Content(Episodes)</visible>
</control>
<control type="image">
<left>1</left>
<top>0</top>
<width>214</width>
<height>160</height>
<aspectratio>scale</aspectratio>
<bordertexture border="5">folder-focus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$INFO[Listitem.Icon]</texture>
<visible>Container.Content(Episodes)</visible>
</control>
<control type="label">
<left>8</left>
<top>160</top>
<width>200</width>
<height>25</height>
<font>font12</font>
<textcolor>white</textcolor>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<info>ListItem.Label</info>
</control>
<control type="image">
<left>170</left>
<top>130</top>
<width>30</width>
<height>30</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.Overlay]</texture>
</control>
</focusedlayout>
<itemlayout condition="Container.Content(Movies) | Container.Content(Seasons) | Container.Content(TVShows) | Container.Content(Sets)" height="279" width="216">
<control type="image">
<left>1</left>
<top>0</top>
<width>214</width>
<height>240</height>
<bordertexture border="5">button-nofocus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$VAR[PosterThumb]</texture>
<aspectratio>keep</aspectratio>
</control>
<control type="label">
<left>8</left>
<top>240</top>
<width>200</width>
<height>25</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<info>ListItem.Label</info>
</control>
<control type="image">
<left>170</left>
<top>210</top>
<width>30</width>
<height>30</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.Overlay]</texture>
</control>
</itemlayout>
<focusedlayout condition="Container.Content(Movies) | Container.Content(Seasons) | Container.Content(TVShows) | Container.Content(Sets)" height="276" width="216">
<control type="image">
<left>1</left>
<top>0</top>
<width>214</width>
<height>240</height>
<bordertexture border="5">folder-focus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$VAR[PosterThumb]</texture>
<aspectratio>keep</aspectratio>
</control>
<control type="label">
<left>8</left>
<top>240</top>
<width>200</width>
<height>25</height>
<font>font12</font>
<textcolor>white</textcolor>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<info>ListItem.Label</info>
</control>
<control type="image">
<left>170</left>
<top>210</top>
<width>30</width>
<height>30</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.Overlay]</texture>
</control>
</focusedlayout>
</control>
<control type="scrollbar" id="60">
<left>1170</left>
<top>80</top>
<width>25</width>
<height>550</height>
<texturesliderbackground border="0,14,0,14">ScrollBarV.png</texturesliderbackground>
<texturesliderbar border="2,16,2,16">ScrollBarV_bar.png</texturesliderbar>
<texturesliderbarfocus border="2,16,2,16">ScrollBarV_bar_focus.png</texturesliderbarfocus>
<textureslidernib>ScrollBarNib.png</textureslidernib>
<textureslidernibfocus>ScrollBarNib.png</textureslidernibfocus>
<onleft>500</onleft>
<onright>2</onright>
<showonepage>false</showonepage>
<orientation>vertical</orientation>
<visible>Control.IsVisible(500)</visible>
</control>
</control>
</include>
<include name="WideIconView">
<control type="group">
<visible>Control.IsVisible(505)</visible>
<include>VisibleFadeEffect</include>
<control type="panel" id="505">
<visible>Container.Content(TVShows) | Container.Content(Files)</visible>
<left>95</left>
<top>80</top>
<width>1080</width>
<height>550</height>
<onleft>2</onleft>
<onright>60</onright>
<onup>505</onup>
<ondown>505</ondown>
<viewtype label="$LOCALIZE[539]">list</viewtype>
<pagecontrol>60</pagecontrol>
<scrolltime>200</scrolltime>
<preloaditems>2</preloaditems>
<itemlayout height="110" width="540">
<control type="image">
<left>1</left>
<top>0</top>
<width>538</width>
<height>105</height>
<bordertexture border="5">button-nofocus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$VAR[BannerThumb]</texture>
<aspectratio>keep</aspectratio>
</control>
<control type="image">
<left>500</left>
<top>70</top>
<width>35</width>
<height>35</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.Overlay]</texture>
</control>
</itemlayout>
<focusedlayout height="110" width="540">
<control type="image">
<left>1</left>
<top>0</top>
<width>538</width>
<height>105</height>
<bordertexture border="5">folder-focus.png</bordertexture>
<bordersize>5</bordersize>
<texture background="true">$VAR[BannerThumb]</texture>
<aspectratio>keep</aspectratio>
</control>
<control type="image">
<left>500</left>
<top>70</top>
<width>35</width>
<height>35</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.Overlay]</texture>
</control>
</focusedlayout>
</control>
<control type="scrollbar" id="60">
<left>1170</left>
<top>80</top>
<width>25</width>
<height>550</height>
<texturesliderbackground border="0,14,0,14">ScrollBarV.png</texturesliderbackground>
<texturesliderbar border="2,16,2,16">ScrollBarV_bar.png</texturesliderbar>
<texturesliderbarfocus border="2,16,2,16">ScrollBarV_bar_focus.png</texturesliderbarfocus>
<textureslidernib>ScrollBarNib.png</textureslidernib>
<textureslidernibfocus>ScrollBarNib.png</textureslidernibfocus>
<onleft>505</onleft>
<onright>2</onright>
<showonepage>false</showonepage>
<orientation>vertical</orientation>
<visible>Control.IsVisible(505)</visible>
</control>
</control>
</include>
<include name="FullWidthList">
<control type="group">
<visible>Control.IsVisible(51)</visible>
<include>VisibleFadeEffect</include>
<control type="list" id="51">
<left>95</left>
<top>78</top>
<width>1080</width>
<height>561</height>
<onleft>2</onleft>
<onright>60</onright>
<onup>51</onup>
<ondown>51</ondown>
<viewtype label="537">list</viewtype>
<pagecontrol>60</pagecontrol>
<scrolltime>200</scrolltime>
<itemlayout height="40" width="1080">
<control type="image">
<left>0</left>
<top>0</top>
<width>1080</width>
<height>41</height>
<texture border="0,2,0,2">MenuItemNF.png</texture>
</control>
<control type="image">
<left>10</left>
<top>4</top>
<width>40</width>
<height>32</height>
<texture background="true">$VAR[PosterThumb]</texture>
<aspectratio>keep</aspectratio>
</control>
<control type="label">
<left>60</left>
<top>0</top>
<width>950</width>
<height>40</height>
<font>font13</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
</control>
<control type="label">
<left>60</left>
<top>0</top>
<width>1000</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>!Window.IsVisible(Videos)</visible>
</control>
<control type="label">
<left>65</left>
<top>0</top>
<width>940</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>Window.IsVisible(Videos)</visible>
<animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) | Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>
<control type="image">
<left>1010</left>
<top>8</top>
<width>40</width>
<height>26</height>
<texture>$VAR[MediaInfoOverlayVar]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos) + [Container.Content(Movies) | Container.Content(Sets) | Container.Content(Episodes) | Container.Content(MusicVideos)]</visible>
</control>
<control type="image">
<left>1050</left>
<top>14</top>
<width>16</width>
<height>16</height>
<texture>OverlayWatching.png</texture>
<visible>Window.IsVisible(Videos) + ListItem.IsResumable</visible>
</control>
<control type="image">
<left>1050</left>
<top>14</top>
<width>20</width>
<height>16</height>
<texture>$INFO[ListItem.Overlay]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos)</visible>
</control>
</itemlayout>
<focusedlayout height="40" width="1080">
<control type="image">
<left>0</left>
<top>0</top>
<width>1080</width>
<height>41</height>
<texture border="0,2,0,2">MenuItemNF.png</texture>
<visible>!Control.HasFocus(51)</visible>
<include>VisibleFadeEffect</include>
</control>
<control type="image">
<left>0</left>
<top>0</top>
<width>1080</width>
<height>41</height>
<texture border="0,2,0,2">MenuItemFO.png</texture>
<visible>Control.HasFocus(51)</visible>
<include>VisibleFadeEffect</include>
</control>
<control type="image">
<left>875</left>
<top>5</top>
<width>200</width>
<height>31</height>
<texture border="0,0,14,0">MediaItemDetailBG.png</texture>
<visible>Control.HasFocus(51) + !String.IsEmpty(ListItem.Label2)</visible>
</control>
<control type="image">
<left>10</left>
<top>4</top>
<width>40</width>
<height>32</height>
<texture background="true">$VAR[PosterThumb]</texture>
<aspectratio>keep</aspectratio>
</control>
<control type="label">
<left>60</left>
<top>0</top>
<width>950</width>
<height>40</height>
<font>font13</font>
<textcolor>white</textcolor>
<selectedcolor>selected</selectedcolor>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
</control>
<control type="label">
<left>60</left>
<top>0</top>
<width>1000</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>!Window.IsVisible(Videos)</visible>
</control>
<control type="label">
<left>65</left>
<top>0</top>
<width>940</width>
<height>40</height>
<font>font12</font>
<textcolor>grey2</textcolor>
<selectedcolor>selected</selectedcolor>
<align>right</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label2]</label>
<visible>Window.IsVisible(Videos)</visible>
<animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) | Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>
<control type="image">
<left>1010</left>
<top>8</top>
<width>40</width>
<height>26</height>
<texture>$VAR[MediaInfoOverlayVar]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos) + [Container.Content(Movies) | Container.Content(Sets) | Container.Content(Episodes) | Container.Content(MusicVideos)]</visible>
</control>
<control type="image">
<left>1050</left>
<top>14</top>
<width>16</width>
<height>16</height>
<texture>OverlayWatching.png</texture>
<visible>Window.IsVisible(Videos) + ListItem.IsResumable</visible>
</control>
<control type="image">
<left>1050</left>
<top>14</top>
<width>20</width>
<height>16</height>
<texture>$INFO[ListItem.Overlay]</texture>
<aspectratio>keep</aspectratio>
<visible>Window.IsVisible(Videos)</visible>
</control>
</focusedlayout>
</control>
<control type="scrollbar" id="60">
<left>1170</left>
<top>80</top>
<width>25</width>
<height>550</height>
<texturesliderbackground border="0,14,0,14">ScrollBarV.png</texturesliderbackground>
<texturesliderbar border="0,14,0,14">ScrollBarV_bar.png</texturesliderbar>
<texturesliderbarfocus border="0,14,0,14">ScrollBarV_bar_focus.png</texturesliderbarfocus>
<textureslidernib>ScrollBarNib.png</textureslidernib>
<textureslidernibfocus>ScrollBarNib.png</textureslidernibfocus>
<onleft>50</onleft>
<onright>2</onright>
<showonepage>false</showonepage>
<orientation>vertical</orientation>
<visible>Control.IsVisible(51)</visible>
</control>
</control>
</include>
</includes>
Reply
#9
@Hitcher 

Thank you so much 🙏

I tested it and it worked perfectly.
I can never thank you enough, I would never be able to add a piece of code, at most I would have eliminated something.

Thank you very much for the help you have given me ❤


I think it will be useful to many other people as well.
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply
#10
You're welcome but beware that it will get wiped with any skin update and need to be added again.
Reply
#11
Thread marked solved.
Reply
#12
@Hitcher

Sure, now I just hope that the confluence skin will always be supported also for future versions of kodi, otherwise if with future versions it will no longer be updated it will have been a waste of work.
If i helped you, you can thank me with a thumbs up 👍 below, thanks 🙏.
Kodi 20.x stable release | Skin Confluence (by Jezz_X)
I like editing skins ❤
Reply

Logout Mark Read Team Forum Stats Members Help
Is it possible to hide episode name titles?0