Hey @andra0412 , so you can definitely do this. Go to Settings > Custom Data > Customers to set up a Customer metafield:
Click Add Definition when prompted and you’ll be brought to add customer metafield definition. You’ll need to name the metafield so call it something like Description with link, add a description for it if you’d like, and then click to add the type of metafield and select Rich text, then click save.
Then go to the customer in the admin you want to add the description to and you’ll see the new metafield:
Click into it and you can add your description, the rich text editor has some basic editing options like bold, italics, list, and you can add a link in there as well, I’m just gonna link to google
Then click save in the top right corner of the screen, should be in the top black bar in the shopify admin
Then in your theme code you’re going to want to go into customers/account.liquid in your Templates folder, I’m using Dawn theme. I just want to output it directly under the logout button or whatever:
In the code you’ll want to check if the metafield isn’t blank, and then output it:
{% if customer.metafields.custom.description_with_link != blank %}
{{ customer.metafields.custom.description_with_link | metafield_tag }}
{% endif %}
Then you’ll see it in the account page. I’m hovering the link and you can see in the bottom left that it’s linking to google.com:
And that’s that







