Created
May 21, 2019 00:36
-
-
Save Juandresyn/bd2abf1e7a0ba139972fbaa2ca1c23cb to your computer and use it in GitHub Desktop.
Shopify liquid Current Url snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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