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

How can I redirect a valid URL to another on my website?

Solved

How can I redirect a valid URL to another on my website?

styl
Explorer
62 0 13

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?

Accepted Solution (1)

LitCommerce
Astronaut
2860 684 761

This is an accepted solution.

Hi @styl,

Please go to main-collection-product-grid.liquid file and add code here:

Screenshot.png

Code:

{% if collection.handle == 'iphone' and current_tags == blank %}
  <script>
    window.location.href = '{{ collection.url }}/iphone-13';
  </script>
{% endif %}

Hope it helps!

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!

View solution in original post

Replies 2 (2)

LitCommerce
Astronaut
2860 684 761

This is an accepted solution.

Hi @styl,

Please go to main-collection-product-grid.liquid file and add code here:

Screenshot.png

Code:

{% if collection.handle == 'iphone' and current_tags == blank %}
  <script>
    window.location.href = '{{ collection.url }}/iphone-13';
  </script>
{% endif %}

Hope it helps!

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!
styl
Explorer
62 0 13

Perfect thank you!