How to target the right Path in my table collection I kinda built

Hey @DavidBeuy !

You’ll want to use an anchor tag (a link) and point it to /products/{product.handle}

So something like this:

{% for product in collection.products %}
  
    {{ product.metafields.custom.rod_series }}
    {{ product.metafields.custom.rod_piece }}
    {{ product.metafields.custom.rod_length }}
    {{ product.metafields.custom.line_weight }}
    {{ product.price | money_with_currency }}
    
      {% if product.variants.size > 0 %}
        View product
      {% endif %}
    
  
{% endfor %}

Let me know if you get stuck :slightly_smiling_face: