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.
As a business owner, have you ever wondered when your customer's first impression of yo...
By Skye Jun 6, 2023We're excited to announce improvements to the threaded messaging experience in our communi...
By TyW May 31, 2023Thank you to everyone who participated in our AMA with Klaviyo. It was great to see so man...
By Jacqui May 30, 2023