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