Is there a woocommerce get function that will give a number format of the total cart price? Thanks!
2 s 2
Update 2020
See flytech’s answer for a solution using the native WooCommerce API.
Note / Caveat
If you’re going to do proper arithmetic with monetary values, always use signed integers (!) representing the smallest denomination of a given currency (Cent, Penny, Paisa, Dirham, e.g.).
Only convert back to decimal fractions in the presentation layer of your application after all calculations are done.
This holds true regardless of language or framework.
Original answer
I don’t know woocommerce at all and hence there might be a native way as well, but anyhow, this