Kodi Community Forum

Full Version: PosterLite Edit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can remove the additional information after the Ratings and add the Studio Logo next to the LOGO?
Aeon MQ6

Image

Thanks!
Look in the skin folder for view*.xml (I only assume).

Use find on "ListItem.Tagline"

It's should be following by $INFO[
(2015-08-06, 07:13)finalmakerr Wrote: [ -> ]Look in the skin folder for view*.xml (I only assume).

Use find on "ListItem.Tagline"

It's should be following by $INFO[

Can yo show a quick example?
I assume the photo is taken from your movies library and it's one of the available skin views.

If so you should find 720p or 1080p folder.
Inside of it you should locate the specific view by name: View... (I believe that's common for all aeon skins).

Once you located the required file look inside with notepad ++

Do a search for what I said before then If you find the line it's best to take a screenshot here before we proceed!

good luck !
(2015-08-07, 18:12)finalmakerr Wrote: [ -> ]I assume the photo is taken from your movies library and it's one of the available skin views.

If so you should find 720p or 1080p folder.
Inside of it you should locate the specific view by name: View... (I believe that's common for all aeon skins).

Once you located the required file look inside with notepad ++

Do a search for what I said before then If you find the line it's best to take a screenshot here before we proceed!

good luck !

Code:
    <label>$INFO[ListItem.Tagline,[COLOR=50FFFAF0]|[/COLOR]   ]</label>
    <textcolor>90FFFFFF</textcolor>
    <scroll>true</scroll>
    <scrollout>false</scrollout>
    <shadowcolor>grey</shadowcolor>
    <visible>![IsEmpty(ListItem.Tagline) | Skin.HasSetting(nomoviestagline)]</visible>
    </control>
Add this line inside the control;
<visible>false</visible>
(2015-08-07, 21:31)finalmakerr Wrote: [ -> ]Add this line inside the control;
<visible>false</visible>

<label>$INFO[ListItem.Tagline,[COLOR=50FFFAF0]|[/COLOR] ]</label>
<textcolor>90FFFFFF</textcolor>
<scroll>true</scroll>
<scrollout>false</scrollout>
<shadowcolor>grey</shadowcolor>
<visible>![IsEmpty(ListItem.Tagline) | Skin.HasSetting(nomoviestagline)]</visible>
</control><visible>false</visible>


Its worked.
Now i lose ratingsBig Grin

This is the change i was hoping to accomplished.

Image