Removing rating in title
#1
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
Reply
#2
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>
-->
Reply

Logout Mark Read Team Forum Stats Members Help
Removing rating in title0