Liquid, JavaScript, themes, sales channels
Hi,
I was wondering if there is a way we can display the first not zero price from the product's variant's array?
Let's assume a product has 5 different variants and their price is like below:
{ A: $0.00, B: $0.00, C:$12.00, D:$13.00, E:$15.00}, I want to display C's price on the frontend, is there a way I can do it with liquid?
Thanks in advance for any helps.
Solved! Go to the solution
This is an accepted solution.
Hi @Ultipower,
Please add code:
{% assign price = product.selected_or_first_available_variant.price %}
{% if price == 0 %}
{% for variant in product.variants %}
{% if price != variant.price %}
{% assign price = variant.price %}
{% break %}
{% endif %}
{% endfor %}
{% endif %}
<span class="price">{{ price | money }}</span>
Hope it helps!
This is an accepted solution.
Hi @Ultipower,
Please add code:
{% assign price = product.selected_or_first_available_variant.price %}
{% if price == 0 %}
{% for variant in product.variants %}
{% if price != variant.price %}
{% assign price = variant.price %}
{% break %}
{% endif %}
{% endfor %}
{% endif %}
<span class="price">{{ price | money }}</span>
Hope it helps!
It works well thank you.
Explore the 30-30-30 rule, a dynamic social media strategy for new businesses. Learn how t...
By Trevor Sep 20, 2023Discover how to leverage the often overlooked footer of your ecommerce site to gain custom...
By Skye Sep 15, 2023In this blog, we’ll be shining a light on Shopify Partners, Experts, and Affiliates. Who a...
By Imogen Sep 13, 2023