Kodi Community Forum
How to disable watched/unwatched icons - 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: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: How to disable watched/unwatched icons (/showthread.php?tid=293928)



How to disable watched/unwatched icons - iceman1973 - 2016-10-15

Does anyone know how to disable the watched/unwatched icons on the cover art? Or at least which file to edit and what to edit in that file?


RE: How to disable watched/unwatched icons - rbronco21 - 2017-08-01

Did you find an answer? Can anyone help? I'd like to remove these and the resume and recent icons as well.


RE: How to disable watched/unwatched icons - jurialmunkey - 2017-08-02

Create a new menu item with the following custom action:
Code:
Skin.SetBool(indicators.watched)

Go to the home screen and click the menu item you made.
Watched indicators will now be disabled.
You can then go delete the menu item as the setting will be saved.

You can replace Skin.SetBool(indicators.watched) with the following to disable other indicators:
Skin.SetBool(indicators.resume)
Skin.SetBool(indicators.new)


RE: How to disable watched/unwatched icons - edubb273 - 2017-12-27

(2017-08-02, 06:07)jurialmunkey Wrote: Create a new menu item with the following custom action:
Code:
Skin.SetBool(indicators.watched)

Go to the home screen and click the menu item you made.
Watched indicators will now be disabled.
You can then go delete the menu item as the setting will be saved.

You can replace Skin.SetBool(indicators.watched) with the following to disable other indicators:
Skin.SetBool(indicators.resume)
Skin.SetBool(indicators.new) 
I just wanted to thank you for posting this reply! Your solution was kludgy, but it worked. My gratitude.