Change navbar links based on customer tag?

CrunchyBytes
Shopify Partner
11 0 1

Hello,

I'm wondering if there is a way to change the navigation bar links based on a customer tag. In this instance we have a (regular/not logged in) account and a (professional) account. We would like to have the regular/not logged in accounts have a certain navbar vs the professional having a different navbar. Is there an app or snippet of code for this? We are using the the "Modular" theme. 

Replies 8 (8)

KetanKumar
Shopify Partner
36839 3635 11972

@CrunchyBytes 


It can be done by doing some code customization. please send me a personal message and we can discuss what you'd like

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
Galvins
Tourist
12 0 1

You can do that but you need to customize the snippet. You can check my private message.

KetanKumar
Shopify Partner
36839 3635 11972

@Galvins 

thanks i will check and let you know 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

LitExtension
Shopify Partner
4860 1001 1133

Hi @CrunchyBytes

You can use this snippet to check:

{% for tag in customer.tags %}

  {% if tag contains 'professional'%}

    {% assign link_professional = 'your_link' %}

  {% else %}

    {% assign link_normal = 'your_link' %}

  {% endif %}

{% endfor %}

Hope this helps.

LitExtension - Shopping Cart Migration Expert
Check out our Shopify migration app to migrate your online store to Shopify
CrunchyBytes
Shopify Partner
11 0 1

Hello, in which file do I place this? 

LitExtension
Shopify Partner
4860 1001 1133

Hi @CrunchyBytes

You can use that snippet to change the file which you want to change navbar links.

LitExtension - Shopping Cart Migration Expert
Check out our Shopify migration app to migrate your online store to Shopify
AmPhIbIaN26
Visitor
1 0 0

{% assign menu_handle = 'main-menu' %}
{% if customer %}
{% if customer.tags contains 'wholesale' %}
{% assign menu_handle = 'main-menu-wholesale' %}
{% endif %}
{% endif %}

I have added this code to the header.liquid file to change the navbar according to the customer tag, but this does not seem to work.

rchristianson
Excursionist
14 1 1

Did you ever get this to work? I'm trying the same thing with no luck.. please help.