Hi @Dvdv ,
Just follow the instructions below
-
Go to Admin page > Online store > themes > Actions > Edit code
-
Open the card-product.liquid under the Snippet folder.
-
Find the code below.
{% render 'price', product: card_product, price_class: '' %}
- Replace it with the code below.
{% if product.price != 0 %}
{% render 'price', product: card_product, price_class: '' %}
{% else %}
FREE
{% endif %}