I am trying to enable a div class based on when a user views certain web page eg: blog, index or ../page/webpage
The code is like this:
{% unless tem
Multiple conditions in if statements don't work so well in liquid. See a similar question here.
One option is to use nested if statements:
{% if template == "index" or template == "page" %}
{% if settings.slideshow_enabled %}
...
{% endif %}
{% endif %}
Or something like this:
{% if template == "index" or template == "page" %}
{% assign correct_template = true %}
{% endif %}
{% if correct_template and settings.slideshow_enabled %}
...
{% endif %}