Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Looking to redirect this URL:
https://stylcase.com/collections/iphone/
To this URL:
https://stylcase.com/collections/iphone/iphone-13
But because it's a valid URL Shopify won't do it, anyone know a workaround?
Solved! Go to the solution
This is an accepted solution.
Hi @styl,
Please go to main-collection-product-grid.liquid file and add code here:
Code:
{% if collection.handle == 'iphone' and current_tags == blank %}
<script>
window.location.href = '{{ collection.url }}/iphone-13';
</script>
{% endif %}
Hope it helps!
This is an accepted solution.
Hi @styl,
Please go to main-collection-product-grid.liquid file and add code here:
Code:
{% if collection.handle == 'iphone' and current_tags == blank %}
<script>
window.location.href = '{{ collection.url }}/iphone-13';
</script>
{% endif %}
Hope it helps!
Perfect thank you!