Change 'Add to Cart' button to 'See Options' button on collection pages

Hi,

I’d like to change the add to cart button to see options button for the products that have options. otherwise customers add a random product to cart and unable to see the selection.

{% if product.tags contains 'options' %}
 
{% endif %}

tried to add to collections.liquid and added ‘options’ tag to the product but it didn’t work.

I’m using lammer theme and the website is cerisusa.com

Thank you!

Hi Ecekar,

"product.tags " only show the product’s own tag. So {% if product.tags contain ‘options’ %} only looking for a tag withthe same ‘options’. So the liquid code has no sense.

Best regard,

Jenny.

No coding knowledge here. I just figured I had to tag products with the word “options” it would work on those products. Any input on what I have to do to achieve what I need?