I followed THIS guide to add a custom link for individual/specific customers. I was able to add it to the accounts page, but I want to be able to add it to the drop down menu when you click on “My accounts” as well.
I was actually able to add it to the menu, but it isn’t formatted or behaving correctly, so I don’t think I am actually doing it correct.
As you can see in the image below. The link that I added is called “Wholesale order form”. It shows up on the list, but it isn’t spaced correctly in the menu and it also doesn’t get highlighted when the cursor is moved over it like it would for the other menu items.
Sample theme here
theme example here
Hi @zabazaba
- You’ve done everything correctly. I noticed it just lacks CSS for the element you added, so it doesn’t look complete. In the guide section, please add the class ‘popover__link-item’ to the liquid example code. It will look like this:
{% assign url = false %}
{% for tag in customer.tags %}
{% if tag contains 'link' %}
{% assign url = tag | split: '--' | last %}
{% endif %}
{% endfor %}
{% if url %}
Click here to go to google
{% endif %}
- Take a look at the result I achieved

- If they are helpful, don’t forget to like and mark as the solution.
Have a nice day sir!
1 Like
Hello BSS-TechFusion!
I am using shopify inspired theme. How can I add a social share icon? I have added an image. I want to keep the social share icon exactly like this image. Is it possible? Please help me. Thank you.
URL: https://blue-chic-clothes.myshopify.com/products/sexy-women-one-shoulder-long-sleeve-jumpsuit
Password: Admin
Now
I want

Thank you for the reply. I realized that it might be because the code I am trying to add is a metafield link, so that’s why it isn’t working properly.
The code below is what I am trying to add as the link
{% if customer.metafields.custom.wholesale_order_form != blank %}
{{ 'Wholesale Order Form' }}
{% endif %}
Into the existing code for the menu system on my site, as seen below:
{%- if customer -%}
{{ 'customer.general.orders' | t }}
{{ 'customer.general.addresses' | t }}
{% if customer.metafields.custom.wholesale_order_form != blank %}
{{ 'Order Form' }}
{% endif %}
{{ 'customer.general.logout' | t }}
{%- else -%}
My only issue is that using {{customer.metafields.custom.wholesale_order_form | metafield_tag}} after the href= doesn’t work as it is intended to. Instead of creating an inline link that matches the format of the other links in the same menu, it instead looks like it is being recognized as a
instead and ends up not having the same format as the rest of the links in the same drop down menu.
Hi @zabazaba
I still can’t quite visualize the issue you described, if possible, please demonstrate it on your website, and I’ll check its HTML code to diagnose the problem and provide a solution for you. (It’s a bit inconvenient since I don’t have access to the source code of your website to test it) Currently, when I access the website, I don’t see any errors (it seems like you’ve removed or commented out that liquid code).
Therefore, if you could modify the liquid snippet you’ve added to (I think this won’t alter the current appearance of your website, however, it will provide useful information for me)
{%- if customer -%}
{{ 'customer.general.orders' | t }}
{{ 'customer.general.addresses' | t }}
{% if customer.metafields.custom.wholesale_order_form != blank %}
{% endif %}
{{ 'customer.general.logout' | t }}
{%- else -%}
I hope these instructions will help you. Have a nice day sir!