Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lukegraham/1068878 to your computer and use it in GitHub Desktop.
Save lukegraham/1068878 to your computer and use it in GitHub Desktop.
A Liquid Snippet for the Meta-Titler Shopify App
{% capture title %}<title>Outdoor Waterproof Led Lights Sydney | Alternative Energy Saving Led Light Bulbs Sydney | Buy Led Light Globes Sydney | Led Fluorescent Tubes Nsw | Led Flood Lights Australia | Buy Budget 12v Led Lights Sydney | High Quality Led Downlights Australia | Buy Led Strip Lights Sydney | Led Strip Lighting Price Australia | Waterproof Rgb Led Strip Lights Australia </title>{% endcapture %}
{% if template == 'product' %}
{% assign mf = product.metafields.meta_data %}
{% unless mf == empty %}
{% for mf in product.metafields.meta_data' %}
{% capture key %}{{ mf | first }}{% endcapture %}
{% if key == 'title' %}
{% capture title %}<title>{{mf | last}}</title>{% endcapture %}
<meta name="title" content="{{mf | last}}" />
{% endif %}
{% if key == 'meta_description' %}
<meta name="description" content="{{mf | last}}" />
{% endif %}
{% if key == 'keywords' %}
<meta name="keywords" content="{{mf | last}}" />
{% endif %}
{% endfor %}
{% endunless %}
{% elsif template == 'page' %}
{% assign mf = page.metafields.meta_data %}
{% unless mf == empty %}
{% for mf in page.metafields.meta_data' %}
{% capture key%}{{ mf | first }}{%endcapture%}
{% if key == 'title' %}
{% capture title %}<title>{{mf | last}}</title>{% endcapture %}
<meta name="title" content="{{mf | last}}" />
{% endif %}
{% if key == 'meta_description' %}
<meta name="description" content="{{mf | last}}" />
{% endif %}
{% if key == 'keywords' %}
<meta name="keywords" content="{{mf | last}}" />
{% endif %}
{% endfor %}
{% endunless %}
{% endif %}
{{title}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment