Hi,
I would like my announcement bar to be visible only on my homepage (www.sugarfreeeu.com), does anyone know how can I make it happen ?
thank you in advance !
Hi,
I would like my announcement bar to be visible only on my homepage (www.sugarfreeeu.com), does anyone know how can I make it happen ?
thank you in advance !
To show your announcement bar on only your homepage, click Edit code, and paste this code into theme.liquid in your layout folder:
{% if template != 'index'%}
{% endif %}
This code is saying that if the template is not the index, or home page, then do not show the announcement bar.
Let me know if this works or if you need extra help. Thanks.