Hi all
I’ve worked it out to add a custom liquid code block on my Shopify store to show the price of the product in just an integer:
{% assign loyalty_points = product.price | money_without_currency | remove: ‘,’ | plus: 0 | divided_by: 100 %}
Je krijgt {{ loyalty_points }} loyaliteitspunten!
But I would like this value, in a metafield for all my products, but I can’t seem to add a formula to a metafield.
The purpose of this metafield would be to show the value in sentences instead of the liquid code block.
Thanks for the help!