Hi,
My site is in Euro so decimals are converted to ‘,’.
I have a field in my theme settings with value ‘50.00’
I would like to add the 50.00 to my cart’s subtotal. So converted the text to decimal by using the filter | times: 1.0.
Pulled the cart subtotal using ‘cart.items_subtotal_price’ but it returned 6475 instead of 64.75.
So I changed it to ‘cart.items_subtotal_price | money_without_currency’, it returned 64,75 - I added it to the converted 50.00 = 114.0. It should be 114.75. Also when I use ‘money_with_currency’ filter to the sum it returns: €0,88 EUR
Is there an issue because of Euro currency?