Hide Product Price on Taste theme

To hide it on collection pages
in file snippets/card-product.liquid
Search for

{% render 'price', product: card_product, price_class: '' %}

and replace it with

{% if template contains "collection" %}
            {% unless card_product.type == "XYZ" %}
            {% render 'price', product: card_product, price_class: '' %}
            {% endunless %}  
            {% else %}   
            {% render 'price', product: card_product, price_class: '' %}
            {% endif %}

Thanks