I want to get total price of cart in my woocommerce plugin.
I want to get it as a float number like so: 21.00 but I don\'t know how to get it. My code outputs weird
Just access the total property directly, it's public:
total
global $woocommerce; echo $woocommerce->cart->total;