Kodi Community Forum
PosterLite Edit - 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: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: PosterLite Edit (/showthread.php?tid=234351)



PosterLite Edit - movie78 - 2015-08-05

How can remove the additional information after the Ratings and add the Studio Logo next to the LOGO?
Aeon MQ6

Image

Thanks!


PosterLite Edit - finalmakerr - 2015-08-06

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

Use find on "ListItem.Tagline"

It's should be following by $INFO[


RE: PosterLite Edit - movie78 - 2015-08-06

(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?


PosterLite Edit - finalmakerr - 2015-08-07

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 !


RE: PosterLite Edit - movie78 - 2015-08-07

(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>



PosterLite Edit - finalmakerr - 2015-08-07

Add this line inside the control;
<visible>false</visible>


RE: PosterLite Edit - movie78 - 2015-08-08

(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