Link displayed according to tag on the /account page

Hi,

I’m looking for a solution or custom code that allow me to display a link into the account page, according to a specific customer tag. In fact, I would like to redirect the wholesaler to the quick order portal.

Thanks in advance for your help!

Hi @chloooe ,

First, you need to add a tag for the customers who want to display the link, for example tag: wholesaler.

Then, on the page you want to display the link, you can add the following code:

{% if customer %} 
  {% if customer.tags contains 'wholesaler' %} 
  	
  {% endif %} 
{% endif %}

Hope it is clear to you.

1 Like

Hi @LitExtension

I simply decided to make another website but the solution seemed to work.

Thanks again for your help!

Hi @chloooe ,

If it helped you solve your issue, please mark it as a solution. Thank you and good luck.