Using Tags In Theme

When search engines crawl websites, they look for hreflang tags to determine the language and region that the website is intended for, and then use that to serve the correct URL based on a user's language and location.

For example, if a store has a default URL of your-store.myshopify.com, and a Spanish language version of es.your-store.myshopify.com, then including hreflang tags in your theme will ensure that a customer located in Spain, or with a Spanish language setting, will be served the Spanish URL.

hreflang tags

An hreflang tag is a link element that identifies a localized URL of a website. You should add a unique hreflang tag for each language or region URL that exists, and they should be included in the <head>, which is commonly found in theme.liquid.

For example:

layout/theme.liquid
<head>
  <!-- head element content -->

  <link rel="alternate" hreflang="en" href="your-store.myshopify.com" />
  <link rel="alternate" hreflang="es" href="es.your-store.myshopify.com" />
</head>

Last updated