How can I insert a link in a new theme section?

Ok, I would like to put a link to more information in a new section that I have built, like the photo. (Location doesn’t really matter, just in the section editor somewhere.) Can this be done? I cannot find this link Shopify includes in the theme anywhere in the code.

Hi @cateb ,

With type ‘liquid’ it will show Shopify default, which means this link will be added automatically. If you want to add the same you can refer the following code:

{
      "type": "header",
      "content": "COUNTRY/REGION SELECTOR",
      "info": "To add a country\/region, go to your [payment settings.](\/admin\/settings\/payments)"
},

When you use this it will automatically add link for text:

[payment settings.](\/admin\/settings\/payments)

Hope it is clear to you.

Thank you!