Kodi Community Forum

Full Version: Display season poster instead of episode thumb for Recent/Random episodes
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Is working fine here after this fix by JM.
Maybe your visible condition's are wrong... why you are using LatestEpisode.%.Path ?.

This is my code and it works fine.
PHP Code:
<item id="1">
   <
onclick>PlayMedia($INFO[Window.Property(LatestEpisode.1.Path)])</onclick>
   <
icon>$INFO[window.property(LatestEpisode.1.ShowThumb)]</icon>
   <
label>$INFO[Window.Property(LatestEpisode.1.ShowTitle)]</label>
   <
label2>$INFO[Window.Property(LatestEpisode.1.EpisodeSeason),]$INFO[Window.Property(LatestEpisode.1.EpisodeNumber),x,. ]$INFO[Window.Property(LatestEpisode.1.EpisodeTitle)]</label2>
   <
property name="Plot">$INFO[window.property(LatestEpisode.1.Plot)]</property>
   <
property name="FanartImage">$INFO[Window.Property(LatestEpisode.1.Fanart)]</property>
   <
visible>!IsEmpty(Window.Property(LatestEpisode.1.ShowTitle))</visible>
</
item

Cheers
Nessus
Thanks for the response, but I still can't get it to show. Are you using the built in recently added for xbmc or the skin widgets. I am using the xbmc function on Beta 2 and I just did a fresh library rescan with poster preferred check. Once I extracted the library it put poster.jpg in my tv show folder. I copied your code over and it still did not show the tv thumb. Fanart and the episode thumb show just fine.
$INFO[Window.Property(LatestEpisode.1.ShowThumb)] - confirmed working here.
Pages: 1 2