I’m trying to move all of my weather and environmental information over to another view.
However, whenever I try and hide the group or any of the sensors from “default_view” with “hidden: true” in configuration, it also hides it in the new view.
I know this thread is old, but I’m looking for a similar solution. I’d like to hide things from the Default View but have them visible in another view.
The solution suggested here comes with a massive compromise. Once you override the default view with something else, if HASS discovers any new devices it’s not visible anywhere till you manually add it in. This is the major feature of the standard default view and a big loss if you change it to something else.
Does anyone have any ideas on how we can hide specific items from default view but still have new devices automatically appear?
I am struggling with the same issue. I dont want the ’ default view’ to be seen by every member of the household in their first login. However, removing it completely remove the nice features that that view has.
For me, it would be solved by either:
1 - Allowing the same functionality to be available on one of the other tabs, or
Or -
2- Change the settings in such a way that when visiting :8123 another view is the first view shown ( in other words, the ’ default view’ that has the handy feature to show all kinds of new stuff should in that case not necessarily be the ’ first view’ someone encounters.)
Are there any ideas about this ? I have been looking on the forum but it seems somehow an unanswered question for now.
I’ve conceded that we’ll likely never get this. I have a group called “default_view” and whenever i edit the Configuration.yaml file I rename it to “notdefault_view” so that i can see everything again.
Once I’ve finished i rename the group back to “default_view”.
What it does is keep a group ‘untracked’ up to date, and you can then steal items from it. It parses you group.yaml file to see what you’ve already assigned.
What about a flag on all entities (ex hide_from_default_view or something) which defaults to False. When we want to see it exclusively in another view we can configure it to True.
That would do the trick for me, to have all new stuff pop up in default_view while I can configure it to be permanently located somewhere else.
FYI,
I recently got bit by this issue, and so I implemented a fix:
Because it requires changes to the frontend, it isn’t very easy to test (you need to build the frontend and point at it in your configuration): https://home-assistant.io/developers/frontend/
Hopefully the developers will accept this change, but who knows.
I think they have recently made it much easier to use lovelace, but I’m still running an older version. I don’t think my setup will be of much help to you, but in lovelace I just put the badges and cards that i want to see on each page. All others end up in a list of not-configured sensors so I can see what I haven’t placed yet. Note that (at least when I set it up) lovelace requires you to completely redo your frontend configuration as once enabled, it expects you to configure which sensors are displayed where. It appears in 0.84 there is a new UI way to configure lovelace, bat as I said I haven’t tried it. I’d probably recommend going through the Wiki (https://www.home-assistant.io/lovelace/)
Note that this is a completely different solution compared to the one I originally posted in this thread, but I found the increased configurability to far outweigh the additional setup requirement.