Hi, I have a problem when I have a product that has variants with different prices. For some reason at collection grid it only shows word “from” but not price. I tried to play with the code but with no luck. Any Ideas where the problem could be?
Here is the code I think that is linked to this problem and also pic of the situation. Other product has variable prices and other only one price. “Alkaen” translates to “From”:
{%- if product.price_varies -%}
{%- assign price = product.price_min | money -%}
{{ 'products.general.from_text_html' | t: price : price }}
{%- else -%}
{{ product.price | money }}
{%- endif -%}