How to get "Free" instead of "$0" as price

Hi @Dvdv ,

Just follow the instructions below

  1. Go to Admin page > Online store > themes > Actions > Edit code

  2. Open the card-product.liquid under the Snippet folder.

  3. Find the code below.

{% render 'price', product: card_product, price_class: '' %}
  1. Replace it with the code below.
{% if product.price != 0 %}
              {% render 'price', product: card_product, price_class: '' %}
              {% else %}
              FREE
              {% endif %}