Search code examples
shopifyliquidshopify-template

is there a way we can conditional loading of snippets to only product page in shopify?


I need to add the snippet only in product page how can I stop it loading on other pages? {% render "custom" %} added to theme.liquid


Solution

  • you can use a conditional tag based on the template object, like {% if template contains "product" %}{% render "custom" %}{% endif %}