New Shopify Certification now available: Liquid Storefronts for Theme Developers

Hiding or redirecting "/products/"

Solved
kinozoom
Tourist
10 1 1

I just noticed that if I go to a product on my store then remove everything in the URL after /products/ I get a page of my collections that is super ugly. Is there a way to not show that URL or redirect them back to the home page.

 

Or can someone tell me how to find where I can edit that page?

 

Thanks

Accepted Solution (1)
Lee-Strong-SEO
Shopify Partner
111 17 20

This is an accepted solution.

Hi @kinozoom

 

Shopify's URL redirect feature won't work for that URL, but you can add some code to your website to redirect users.

 

Just add this code to your theme.liquid file, just after the <head> tag.

{% if request.path == '/products' %}
  <script>window.location.href="/"</script>
{% endif %}

 

This should redirect any users who visit the /products page back to your homepage.

 

Lee 

Strong SEO - The Best SEO App for Shopify
Get More Customers from Google, Without Paying for Clicks!

➡️ Install Strong SEO Now ⬅️

View solution in original post

Replies 3 (3)
ZenoPageBuilder
Shopify Partner
836 148 168

Hello @kinozoom 

That is the URL to show all collections on your store. There is no way to hide or redirect it.

Zeno Page Builder - Build responsive & SEO-optimized Landing pages, Blog posts, Product pages and more...
Learn more at zenobuilder.com
Abdosamer
Shopify Partner
419 60 60

Hi @kinozoom , can you share your store url?

 

Email : abdelrahamansamer71@gmail.com
Buy me a Coffee
Chat on WhatsApp
Lee-Strong-SEO
Shopify Partner
111 17 20

This is an accepted solution.

Hi @kinozoom

 

Shopify's URL redirect feature won't work for that URL, but you can add some code to your website to redirect users.

 

Just add this code to your theme.liquid file, just after the <head> tag.

{% if request.path == '/products' %}
  <script>window.location.href="/"</script>
{% endif %}

 

This should redirect any users who visit the /products page back to your homepage.

 

Lee 

Strong SEO - The Best SEO App for Shopify
Get More Customers from Google, Without Paying for Clicks!

➡️ Install Strong SEO Now ⬅️