Reputation: 21
I am doing some custom work in WooCommerce WordPress plugin. I am unable to get cart total. How can I do this.
$total = $woocommerce->cart->get_total();
Upvotes: 1
Views: 148
Reputation: 578
global $woocommerce;
$amount = $woocommerce->cart->cart_contents_total+$woocommerce->cart->tax_total;
Upvotes: 1