Closed Mariusthvdb closed 4 years ago
Please, be sure to read the issues section of the docs and provide the required information. Issues that don't provide the necessary information may not get a reply and may be closed. If this is a feature request you can ignore this message.
Stripping your config to the relevant code to make it easier to troubleshoot:
compact_mode: >-
{{is_state('input_boolean.ch_compact_mode','on')}}
footer_mode: >-
{{is_state('input_boolean.ch_footermode_mode','on')}}
split_mode: >-
{{is_state('input_boolean.ch_split_mode','on')}}
exceptions:
- conditions:
user_agent: iPhone
config:
footer_mode: true
you beat me, was just going to post this:
kiosk_mode: >-
{{ is_state('input_select.mode','Kiosk') }}
compact_mode: >-
{{is_state('input_boolean.ch_compact_mode','on')}}
shadow: >-
{{is_state('input_boolean.ch_shadow','on')}}
footer_mode: >-
{{is_state('input_boolean.ch_footermode_mode','on')}}
split_mode: >-
{{is_state('input_boolean.ch_split_mode','on')}}
as my full CH config. Which has the exact same results. Compact mode only works on its own. Footer mode does nothing
split mode works alright. Kiosk mode works fine too, but it is triggered from another input as you can see, so it isn't listed in the screenshots.
Been trying to recreate your issues, but everything is working as intended for me. I should add an exception so that split_mode ignores compact_mode since they don't work together, but other than that I am so far stumped.
hi, testing 3.1.7 I still find footer mode does nothing...
split mode works as before, splitting the header into a header and a footer, with the tabs/icons in the footer.
confirm we can now use split mode and compact mode, and it shows split mode (before it dint show the footer)
so, issue left: footer mode does nothing....
proof of te new version loaded:
Just to try and track this down, try the following configs with no templates and let me know if they work as expected.
Simple footer mode:
custom_header:
footer_mode: true
Compact footer:
custom_header:
compact_mode: true
footer_mode: true
Split mode:
custom_header:
split_mode: true
Split mode flipped:
custom_header:
split_mode: true
footer_mode: true
sure, Ive tested these, and their template variants. Where I write no, nothing happens at all. yes means works as expected... mobile = iOS app desktop = Safari Mac
custom_header:
footer_mode: true
desktop: yes mobile: no
footer_mode: >-
{{is_state('input_boolean.ch_footer_mode','on')}}
desktop: no mobile: no
custom_header:
compact_mode: true
footer_mode: true
desktop: yes mobile: no
compact_mode: >-
{{is_state('input_boolean.ch_compact_mode','on')}}
footer_mode: >-
{{is_state('input_boolean.ch_footer_mode','on')}}
desktop: only compact mode showing compact header, no footer mobile: no
custom_header:
split_mode: true
desktop: yes mobile: no
split_mode: >-
{{is_state('input_boolean.ch_split_mode','on')}}
desktop: yes mobile: no
custom_header:
split_mode: true
footer_mode: true
desktop: yes mobile: no
split_mode: >-
{{is_state('input_boolean.ch_split_mode','on')}}
footer_mode: >-
{{is_state('input_boolean.ch_footer_mode','on')}}
desktop: only split mode makes the tabs/icons shown in the footer, and header show title etc, footer-mode does nothing mobile: no
edit !!!
feeling quite embarassed here.... really sorry..
I had an edit mistake in the footer boolean
footer_mode: >-
{{is_state('input_boolean.ch_footermode_mode','on')}}
wont work.... now that I have edited these to
footer_mode: >-
{{is_state('input_boolean.ch_footer_mode','on')}}
they kick in.
will test further now, with my regular, more templated setup ... again, my huge apologies!!
quick further update:
on iOS mobile app, the CH settings don't seem to do anything at all. While a shortcut favorite to the mobile desktop does work as expected, and the exceptions using
- conditions:
user_agent: iPhone
config:
footer_mode: true
indicator_top: false
show the desired outcome
Sounds like everything is working well with the modes then. I will look into the settings issue (feel free to create a new issue if you'd like), but am closing this one for now.
in variuos combinations, please see extensive post here
config:
which is unchanged from using 1.3.0 versions thanks for having a look
bottom line now, using split mode now gives me the tab/icons in the footer, and the header in the header. which is what I need. Still the other functionality seems to be somewhat bugged.