Intermediate 1 min read
Get current url of any page
Here's a quick and easy way to get any Shopify url in your store. `{% assign current_url = canonical_url %}``{% assign current_url = current_url | replace: "https://storeurl.myshopify.com", "" %}`{% assign current_url = c...
By Joe Pichardo •
Here’s a quick and easy way to get any Shopify url in your store.
{% assign current_url = canonical_url %}{% assign current_url = current_url | replace: "https://storeurl.myshopify.com", "" %}{% assign current_url = current_url | replace: shop.secure_url, "" %}
Discussion
Loading comments...