(2024-06-23, 08:50)Rookein2minds Wrote: (2024-06-18, 11:43)Officer KD6-3.7 Wrote: (2024-06-18, 11:34)vella9 Wrote: My bad, you are right, that works.
But what I need to change is the side menu icon when "swap search with discover" is enabled in classic mode. TIA
No worries! I am glad it worked.
The earlier change only applies to the side menu buttons in the context menu.
To change the icon in your home screen, go to the Includes_Images.xml and change line 5 from 'binoculars.png' to 'search.png'.
Let me know if it works and feel free to reach out if you have any other questions!
Hi, was wondering if you had any idea on removing the plot from the info of widgets... I have autoscroll textbox switched off, so I've never really used that plot... And it's creating that fallback that states how many movies you've watched and what you last watched... I really don't need that info on every widget and Item with no plot, makes thing look a bit rough
I manage to get about 40% of this goal by adjusting the height of the plot in includes_constants to 0... but it isn't quite what I'm after
It moves the ratings up... would prefer the title and infoline came down instead...
Also there's still a single line of info as fallback for no ratings
Any ideas on what could be done to achieve this?? 🤔🤔
Hi!
Of course, I would be more than happy to assist! I would recommend not changing the height since it might cause weird scaling issues in the skin. A much simpler solution would be to get rid of the fallback text 'You have watched..." by editing
this section of the
Includes_Defaults.xml file and leaving the <value></value> section blank.
It would look something like this:
Code:
<variable name="Def_PlotDetails_Fallback">
<value condition="$EXP[Exp_IsWindow_Music] | Window.IsVisible(1103)"></value>
<value condition="!String.IsEmpty(Window(Home).Property(TMDbHelper.TraktStats.Movies.Watched)) + !String.IsEmpty(Window(Home).Property(TMDbHelper.TraktStats.Shows.Watched))"></value>
<value condition="!String.IsEmpty(Window(Home).Property(TMDbHelper.TraktStats.Total.Minutes))"></value>
<value condition="$EXP[Exp_IsWindow_TVShows]"></value>
<value condition="$EXP[Exp_IsWindow_Movies]"></value>
<value></value>
</variable>
This change should mean that when an item doesn't have any info/plot data to pull from, it'll simply appear blank (without affecting the scaling of the skin i.e. without moving the ratings and info line).
Here's an example:
BEFORE: Spotlight with no items:
https://ibb.co/MRr2DtK
AFTER: Spotlight with no items (fallback text removed):
https://ibb.co/LxVQ7NG
Widgets have items with plot info:
https://ibb.co/LSJy3gp
Feel free to reach out if you have more questions!