Why are my product variant prices not displaying?

Hi,

I’m not a programmer but I need some help with this. Variations prices are not showing at this moment.

This is the code for product.liquid

{% assign currentVariant = product.variants.first.id %}
{% assign currentProduct = product %}

{% if product.images.size > 1 %}
Slide Left Icon
Slide Right Icon
{% for image in product.images | offset: 0 %}
{% include 'image' %}
{% endfor %}
{% else %}
{% assign image = product.featured_image %} {% include 'image' %}
{% endif %}
{% assign title = product.title | split: '/' %}

{{ title[0] }}

{{ title[1] }}

{% unless product.price_max == 0 %}
{% if product.compare_at_price_max > product.price %} {{ product.compare_at_price_max | money }} {{ product.price | money }} {% else %}

{{ product.price | money }}
{% endif %}

{% endunless %}
{{ product.content }}
{% for collection in product.collections %} {% if collection.title contains "Variants" %}
Color
{% for product in collection.products %} {% endfor %}
{% endif %} {% endfor %}

{% comment %}
{% if product.metafields.accentuate.product_colour_variant %}

Color
{% for value in product.metafields.accentuate.product_colour_variant %} {% assign colourProduct = all_products[value]%} {% if colourProduct.url != '' %} {% if colourProduct.available %} {% endif %} {% endif %} {% endfor %}
{% endif %} {% endcomment %} {% if product.variants.size > 1 %}
    {% for variant in product.variants %}
  • {{ variant.option1 }}
  • {% endfor %}
{% endif %} {% if product.available %} Add to Cart {% else %}
{% endif %}
    {% if product.metafields.accentuate.product_sizing %}
  • About the artist
  • {% endif %} {% if product.metafields.accentuate.product_returns %}
  • Exhibitions
  • {% endif %} {% if product.metafields.accentuate.product_details %}
  • Press
  • {% endif %}
{% if product.metafields.accentuate.product_sizing %}
{{ product.metafields.accentuate.product_sizing.html }}
{% endif %} {% if product.metafields.accentuate.product_returns %}
{{ product.metafields.accentuate.product_returns.html }}
{% endif %} {% if product.metafields.accentuate.product_details %}
{{ product.metafields.accentuate.product_details.html }}
{% endif %}

{% if product.metafields.accentuate.product_recommended_product %}

Available Works

{% for recProduct in product.metafields.accentuate.product_recommended_product %} {% assign product = all_products[recProduct]%} {% if product.url != '' %} {% include 'productitem' %} {% endif %} {% endfor %}
{% endif %}