Kodi Community Forum
Removing rating in title - 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: Unity (https://forum.kodi.tv/forumdisplay.php?fid=244)
+---- Thread: Removing rating in title (/showthread.php?tid=364915)



Removing rating in title - poudi8 - 2021-10-13

Hi,

I have been using Unity in the past few month and was able to customise it to my need, but can't get rid of the rating on every episode,
I tried to disable it in setting file, and in the theme file, but can't figure out how to do that, is it possible?


Image


RE: Removing rating in title - poudi8 - 2021-11-04

Just managed to do it, I had to comment out every blocks of text that contain " Label2 " from control to control, using <!-- and --> 

With notepad++ using the search feature i was able to find all blocks that contain " Label2 " and turn them from this:
Quote:<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>

To this:
Quote:<!--
<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>
-->