Kodi Community Forum
EPG Labels Incorrect in Helix - 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: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+---- Thread: EPG Labels Incorrect in Helix (/showthread.php?tid=263933)



EPG Labels Incorrect in Helix - cybertheque - 2016-03-11

Greetings,

We are for the foreseeable future frozen to using Helix 14.2 for a variety of reasons and hope that a solution can be found to fix the EPG labels in the 'Now' and 'Next' views.

In Frodo 12.3 the labels are correct:

http://www.cybertheque.org/epg-bug/frodo-12.3-transparency-epg-now.jpg

In Helix 14.2 using Confluence skin the labels are correct:

http://www.cybertheque.org/epg-bug/helix-14.2-confluence-epg-now.jpg

In Helix 14.2 using Transparency the labels are wrong:

http://www.cybertheque.org/epg-bug/helix-14.2-transparency-epg-now.jpg

The epg is using an xmltv.xml file accessed as an http url and built by zap2xml.pl

Replies appreciated.


RE: EPG Labels Incorrect in Helix - ronie - 2016-03-11

look in Views-PVR.xml

there are 4 occurrences of:
Code:
<label>$INFO[ListItem.Filename]</label>

change them to:
Code:
<label>$INFO[ListItem.ChannelNumberLabel,,. ]$INFO[ListItem.ChannelName]</label>



RE: EPG Labels Incorrect in Helix - cybertheque - 2016-03-12

Thanks for your quick reply!

The following diff (http://www.cybertheque.org/epg-bug/View-PVR.diff) results in the look that we need; channel numbers are superfluous and confusing in our application so are not shown:

Code:
--- View-PVR.xml.0      Fri Apr 24 13:40:19 2015
+++ View-PVR.xml        Fri Mar 11 18:09:26 2016
@@ -45,7 +45,7 @@
                                        <selectedcolor>blue</selectedcolor>
                                        <align>left</align>
                                        <aligny>center</aligny>
-                                       <label>$INFO[ListItem.ChannelNumberLabel,,. ]$INFO[ListItem.Label]</label>
+<label>$INFO[ListItem.Label]</label>
                                </control>
                        </itemlayout>
                        <focusedlayout width="355" height="29">
@@ -87,7 +87,7 @@
                                        <selectedcolor>blue</selectedcolor>
                                        <align>left</align>
                                        <aligny>center</aligny>
-                                       <label>$INFO[ListItem.ChannelNumberLabel,,. ]$INFO[ListItem.Label]</label>
+<label>$INFO[ListItem.Label]</label>
                                </control>
                        </focusedlayout>
                </control>
@@ -231,7 +231,7 @@
                                        <aligny>center</aligny>
                                        <selectedcolor>blue</selectedcolor>
                                        <align>right</align>
-                                       <label>$INFO[ListItem.ChannelNumberLabel,,.] $INFO[ListItem.ChannelName]</label>
+                                       <label>$INFO[ListItem.ChannelName]</label>
                                        <scroll>false</scroll>
                                </control>
                        </channellayout>
@@ -276,7 +276,7 @@
                                        <aligny>center</aligny>
                                        <selectedcolor>blue</selectedcolor>
                                        <align>right</align>
-                                       <label>$INFO[ListItem.ChannelNumberLabel,,.] $INFO[ListItem.ChannelName]</label>
+                                       <label>$INFO[ListItem.ChannelName]</label>
                                        <scroll>false</scroll>
                                </control>
                        </focusedchannellayout>
@@ -703,7 +703,7 @@
                                        <selectedcolor>blue</selectedcolor>
                                        <align>left</align>
                                        <aligny>center</aligny>
-                                       <label>$INFO[ListItem.Filename]</label>
+<label>$INFO[ListItem.ChannelName]</label>
                                </control>
                                <control type="label">
                                        <posx>240</posx>
@@ -783,7 +783,7 @@
                                        <selectedcolor>blue</selectedcolor>
                                        <align>left</align>
                                        <aligny>center</aligny>
-                                       <label>$INFO[ListItem.Filename]</label>
+<label>$INFO[ListItem.ChannelName]</label>
                                </control>
                                <control type="label">
                                        <posx>240</posx>
@@ -870,7 +870,7 @@
                                        <selectedcolor>blue</selectedcolor>
                                        <align>left</align>
                                        <aligny>center</aligny>
-                                       <label>$INFO[ListItem.Filename]</label>
+<label>$INFO[ListItem.ChannelName]</label>
                                </control>
                                <control type="label">
                                        <posx>240</posx>
@@ -950,7 +950,7 @@
                                        <selectedcolor>blue</selectedcolor>
                                        <align>left</align>
                                        <aligny>center</aligny>
-                                       <label>$INFO[ListItem.Filename]</label>
+<label>$INFO[ListItem.ChannelName]</label>
                                </control>
                                <control type="label">
                                        <posx>240</posx>

Here is the resulting channels menu:
http://www.cybertheque.org/epg-bug/channels-fixed.jpg

Here is the 'now' view of the epg:
http://www.cybertheque.org/epg-bug/epg-now-fixed.jpg