Skip to content

Instantly share code, notes, and snippets.

@tinotriste
Last active May 21, 2019 00:33
Show Gist options
  • Save tinotriste/5328126 to your computer and use it in GitHub Desktop.
Save tinotriste/5328126 to your computer and use it in GitHub Desktop.
Shopify: Find current URL
{% assign current_url = '' %}
{% case template %}
{% when 'page' %}
{% assign current_url = page.url %}
{% when 'blog' %}
{% assign current_url = blog.url %}
{% when 'article' %}
{% assign current_url = blog.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