Skip to content

Instantly share code, notes, and snippets.

@Juandresyn
Created May 21, 2019 00:36
Show Gist options
  • Save Juandresyn/bd2abf1e7a0ba139972fbaa2ca1c23cb to your computer and use it in GitHub Desktop.
Save Juandresyn/bd2abf1e7a0ba139972fbaa2ca1c23cb to your computer and use it in GitHub Desktop.
Shopify liquid Current Url snippet
{% assign current_url = '' %}
{% case template %}
{% when 'page' %}
{% assign current_url = page.url %}
{% when 'blog' %}
{% assign current_url = blog.url %}
{% when 'article' %}
{% assign current_url = article.url %}
{% when 'collection' %}
{% assign current_url = collection.url %}
{% when 'product' %}
{% assign current_url = product.url %}
{% endcase %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment