Disable IMDB scores
#1
Is there any way at all to stop IMDB scores from appearing in Library view? If possible I would like that whole feature disabled so that no rating score appears whatsoever.

Any help appreciated!
Reply
#2
If you are using Confluence, open ViewsVideoLibrary.xml, search for your ViewType (eg. MediaListView3 which is 'Infos 2'), look for <label>$INFO[ListItem.Label2]</label> and comment it out, the whole control tag containing that 'label'

eg for MediaListView3 change the following

Code:
                    <control type="label">
                        <posx>510</posx>
                        <posy>0</posy>
                        <width>500</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:

Code:
<!--                     <control type="label">
                        <posx>510</posx>
                        <posy>0</posy>
                        <width>500</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> -->


make sure to change all relevant sections for your view. Dirty solution, but works. Please be aware that non of the Label2 items will be shown afterwards, so no sorting after year or whatever will be possible, the whole colum will be deleted. And that applies for TV Shows aswell.
Reply
#3
Thanks for the reply, is it skin specific then? Im using Mediastream Redux.
Reply

Logout Mark Read Team Forum Stats Members Help
Disable IMDB scores0