I have two pages that need to have an alternative navigation menu for google ad purposes. I thought it would be as simple as plugging in some if/else logic in the header.liquid file but I am running in to some issues. This is what I have tried and doesn’t seem to be working:
{% if template == "product.name" %}
{% include 'alt-nav' %}
{% else %}
{% include 'main-nav' %}
{% endif %}