How can i get order_total without taxes and shipping cost ? On woocommerce

Clément Houde picture Clément Houde · Nov 20, 2015 · Viewed 14.9k times · Source

i want put an pixel for tracking my orders for affiliate.

I must get my total order after discount, so without Tax and Shipping cost.

I've make something like this but it's display 0 .

<?php echo $woocommerce->cart->get_total_ex_tax(); ?>

It's maybe because it's display currency symbol.

Answer

Vmadmax picture Vmadmax · Mar 14, 2017

This it the cart total without tax and shipping.

$cart_value = number_format( (float) $order->get_total() - $order->get_total_tax() - $order->get_total_shipping() - $order->get_shipping_tax(), wc_get_price_decimals(), '.', '' );