EPG Labels Incorrect in Helix
#1
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...pg-now.jpg

In Helix 14.2 using Confluence skin the labels are correct:

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

In Helix 14.2 using Transparency the labels are wrong:

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

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

Replies appreciated.
Reply
#2
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>
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
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
Reply

Logout Mark Read Team Forum Stats Members Help
EPG Labels Incorrect in Helix0