vinay kumar
vinay kumar

Reputation: 21

Unable to get cart total in woocommerce

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

Answers (1)

Deepak Kumar
Deepak Kumar

Reputation: 578

global $woocommerce;
$amount = $woocommerce->cart->cart_contents_total+$woocommerce->cart->tax_total;

Upvotes: 1

Related Questions