WC_Cart::get_displayed_subtotal()
Determines the value that the customer spent and the subtotal displayed, used for things like coupon validation.
Description Description
Since the coupon lines are displayed based on the TAX DISPLAY value of cart, this is used to determine the spend.
If cart totals are shown including tax, use the subtotal. If cart totals are shown excluding tax, use the subtotal ex tax (tax is shown after coupons).
Return Return
(string)
Source Source
File: includes/class-wc-cart.php
946 947 948 | public function get_displayed_subtotal() { return $this ->display_prices_including_tax() ? $this ->get_subtotal() + $this ->get_subtotal_tax() : $this ->get_subtotal(); } |
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |