Product titles lead to home page after clicking, how do I fix this to lead to product page?

Product titles lead to home page after clicking, how do I fix this to lead to product page?

Spacetraders
Visitor
2 0 0

Hello, when your scrolling through the products under the collection pages, EX: Youth Apparel, Mugs, Stickers; and you click on an items title to view it, it leads the user back to the home page. But, if one was to click the products picture, it does lead them to the product page. How to a fix this to where both, the title/description & the picture, lead you to the product page. Our sites link is: https://spacetrader.shop/

 

https://spacetrader.shop/collections/patches here is a link for you to visually see the issue, try clicking on any products title, then try clicking on any products picture. 

Thank you.

Replies 2 (2)

Entaice
Trailblazer
160 10 43

Check the HTML or Liquid code for your collection pages. Look for the section where product titles are linked. It should look something like `<a href="{{ product.url }}">` for product titles. Make sure the `href` is correctly pointing to `{{ product.url }}` and not `"/"` or any other incorrect path. Fix any issues you spot there.

You can increase your revenue by 5% by replacing Shopify's default sorts. Test for free. **Show me how**
Spacetraders
Visitor
2 0 0

I was able to find what I believe is the correct code you were pointing out. In the "collection.liquid" I found 'a href="/"' and changed it to 'a href="{{ product.url }}', but that did not do the trick. Any other suggestions?