Hi All,
I created one snippet code and linked it that snippet on theme.liquid file as a {% render ‘location-popup’ %}. Now everything works correct but the issue is this snippet shows on all pages of the website and I just want to show this snippet on only homepage. My website link is https://primoliquors.com/. Can you please help me on this.
Hi @Mohsin_Khan , the problem is you’ve included in theme.liquid and all of your pages (probably) use that layout. So just change your code in theme.liquid to:
{% if template == 'index' %}
{% render 'location-popup' %}
{% endif %}
@MarinaPetrovic That works perfect, I have one more issue, I want to show this snippet only one time for one customer at a time. is you can help me that would be great.