I am trying to add something to one of our templates and I want to only have it show up when users are on the English version of our website.
I tried implementing the code below but keep getting errors:
{% if website.selected_language.code == 'en-US' %}
.......
{% end if %}
Is this Liquid wrong or is there another way I have to be referencing the English site?
