Hi,
Our products page don’t display pricing until a variant is selected, we have different variants and if clients goes on the page it could look like the product isn’t available since the price isn’t showing straight away! We want to display the lower price as soon as you land on the product page rather than the text “Make your selection”.
How can we do this??
Would you know what I should copy instead of my code here:
{% if pick_an_option %}
{{ 'products.product.make_a_selection' | t }}
{% elsif current_variant.available %}
{{ current_variant.price | money }}
{% else %}
{{ "products.product.sold_out" | t }}
{% assign on_sale = false %}
{% endif %}
The tutorial shared don’t have the same options as I have so its not as straight forward.