How can I round subtotal_price in order confirmation email?

Hello !

In my order confirmation email I would like to turn my subtotal into a number divided by 100, then rounded to the lowest entire unit.

Exemple :

subtotal_price = 308$

value should be 308/100 = 3.08 rounded = 3

Thank you !

Hi @MO85 ,

Please change code:

{% assign subtotal_new = subtotal_price | divided_by: 100 %}
{{ subtotal_new | money }}

Refer ‘Math filters’: https://shopify.dev/api/liquid/filters/math-filters

Hope it helps!

1 Like

Thank you ! @LitCommerce

1 Like