How to display images on specific domains only?

Greetings!

I have an image on my cart page:


Which i only want to display, when people visit the Danish version of my site (www.ydale.dk)
I have multiple domains for each market (so swedish would be www.ydale.se)

Is this possible?

I am thinking something in the lines of a IF construct. but i am not very good at coding.

So:

If domain is (or starts with) www.ydale.dk then show image else nothing/hide

Is this possible?

Thanks in advance

I thought this would work, but it doesnt :disappointed_face:

{% if (str_contains($url, “ydale.dk”)) %}
Vi sælger kun alkohol til personer over 18
{% else %}

{% endif %}