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
I have code like this and working perfect:
if ( ! WC()->cart->prices_include_tax ) { $amount = WC()->cart->cart_contents_total; } else { $amount = WC()->cart->cart_contents_total + WC()->cart->tax_total; }
good luck !