muhammad shafique
muhammad shafique

Reputation: 1

template show in multiple pages in liquid shopify

How to use this condition for multiple pages?
Like index and product page.

{% if template.name == "index" %} 
 do something
{% endif %}

Upvotes: 0

Views: 1216

Answers (1)

cMarius
cMarius

Reputation: 1132

Try using something like this:

{% if template contains "index" or template contains "product" %}
  do something
{% endif %}

Upvotes: 1

Related Questions