I have a problem. i have to show a bar at the top of the website, and when somebody reach 50€ of shipping they are free. But if somebody see the website in USD currency this 50€ should be like 47 $ or whatever.
I’ve tried like that: {{ 5000 | money_with_currency }}
but is rendered always 50,00 and change just the symbol of the currency.
I expect something like: {{ 50,00 € | money_with_currency }}.
I mean, should not be something crazy to do, but maybe in this case liquid can’t help.
Let me know!
Because for now to reach anyway this result, i’ve created another product that is now shown with the value of 50€, and then i’ve called the price of this product where i want to show this price. The code is this:
{% for product in collections.all.products %}
{% case product.id %}
{% when 8639645516114 %}
{% assign my_product = product %}
{% endcase %}
{% endfor %}
+{{ my_product.price | money_with_currency }}
But is super long and should not be so hard :')