@elisha_langworth
To hide a specific tag from a Shopify navigation menu, you will need to customize the theme code. Here's how you can do it:
1 2 3 |
{% for link in linklists.main-menu.links %}
<a href="{{ link.url }}">{{ link.title }}</a>
{% endfor %}
|
1 2 3 4 5 6 |
{% for link in linklists.main-menu.links %}
{% if link.object.tags contains 'exclude-tag' %}
{% continue %}
{% endif %}
<a href="{{ link.url }}">{{ link.title }}</a>
{% endfor %}
|
Please note that modifying theme code can be risky and you should always make a backup of your theme before making any changes. If you're not comfortable editing code yourself, consider hiring a Shopify expert or developer to help you with this customization.