Lovelace - Use a sensor without name

Hi All,

I’ve made a sensor for when people are at home or away. Sensor uses pictures to say if someone is at home or not. Is there a way to use only the sensor symbol (the changing pictures) without the words “Home XXX”?

eltjo_thuis:
friendly_name: ’ ’
unit_of_measurement: ‘Eltjo’
value_template: >-
{% if is_state(‘group.eltjo’, ‘home’) %}
Thuis
{% else %}
Weg
{% endif %}
entity_picture_template: >-
{% if is_state(‘group.eltjo’, ‘home’) %}
/local/EltjoThuis.png
{% else %}
/local/NietThuis.png
{% endif %}

What do you mean ‘sesnor symbol’. Also, what card are you using in Lovelace?

Here is an image: https://imgur.com/dS0vZG5

The first two are the sensors, they will change if we are home or away. So the text on the right of the symbol is not necessary. I’d love to have only the pictures and not the text. Anyone an idea?

Oh I use the Entities card!

Put those 2 sensors in a glance card:

and Don’t show the state or Name

That’s the one, thank you! I used the migration wizard, and no glance card was used.