Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subtotal cart variable php WooCommerce

Does anyone know what $variable to use in php to get the subtotal of the cart?
Subtotal = total value of cart BEFORE discount or taxes.

It would help me a lot. I want to add an extra fee if the subtotal is above 250 euro.

Thanks in advance.

like image 635
Cedric De Clercq Avatar asked Jun 06 '16 18:06

Cedric De Clercq


1 Answers

I kept getting an incorrect subtotal (a little high, but could not determine why) using Loic's code snippets. I tried every similar variant and eventually found the following code:

WC()->cart->get_subtotal();

Using this snippet above, I get precisely the amount expected which matches the actual subtotal displayed in the cart.

Now my 'free shipping' upsell calculation is working perfectly.

like image 196
MarkPraschan Avatar answered Sep 26 '22 20:09

MarkPraschan