Hide the group card switch

Not sure if this is still relevant but I’d also like to be able to disable the switch for groups… tried the above suggestions and they didn’t work which isn’t a surprise as the instructions don’t contain those options.

Maybe I’m missing the point here, but I have no issues when trying to hide the header toggle in my Lovelace configuration. An example:

title: Settings
icon: mdi:cog
cards:
  - type: vertical-stack
    cards:
      - type: entities
        entities:
          - input_boolean.notify_persistent
          - input_boolean.notify_pushover
          - input_number.pushover_priority
        show_header_toggle: false
        title: Notification settings
      - type: entities
        entities:
          - input_boolean.mode_summer
          - input_boolean.mode_christmas
          - input_boolean.mode_vacation
          - entity: switch.flux_light_adjustment
            secondary_info: last-changed
        show_header_toggle: false
        state_color: true
        title: Automation settings

See? No header toggles. This is completely independent of whatever entities are listed in the card.

The header toggle is a UI feature so if you want to hide it, you have to tell Lovelace to do so. You can’t tell the group itself to hide the toggle, that option is no longer supported.

I think it’s more that I’ve posted in the wrong thread now that I’ve looked at the thread title again… anyway, as I’m here; I’ve created a group using the following:-

  Dishwasher_Statistics:
    name: Kitchen Dishwasher
    icon: mdi:power-socket-uk
    entities:
      - switch.kitchen_dishwasher
      - sensor.socket_7_consumption_today
      - sensor.socket_7_ampere
      - sensor.socket_7_voltage
      - sensor.socket_7_wattage
      - sensor.socket_7_total_consumption

When clicking on the group I’m presented with:-

As you can see it has one switch for the group and another for the actual switch.kitchen_dishwasher.

And I’m trying to hide or remove the group switch (I think it’s the group switch).

The only options as far as I can work out are here.