Is there any way to show different header menu for different pages
theme: craft
Is there any way to show different header menu for different pages
theme: craft
Yes this can be done via some conditional statements for the menu links.
{% if template.name == "index" %}
MENU 1 code
{% else %}
MENU 2 CODE
{% endif %}
Thanks