Warning: This method has been deprecated. Order discounts (after tax) removed in 2.3 so multiple methods for discounts are no longer required instead.
WC_Legacy_Cart::get_discounts_before_tax()
Gets the total (product) discount amount – these are applied before tax.
Description Description
Return Return
(mixed) formatted price or false if there are none.
Source Source
File: includes/legacy/class-wc-legacy-cart.php
public function get_discounts_before_tax() {
wc_deprecated_function( 'get_discounts_before_tax', '2.3', 'get_total_discount' );
if ( $this->get_cart_discount_total() ) {
$discounts_before_tax = wc_price( $this->get_cart_discount_total() );
} else {
$discounts_before_tax = false;
}
return apply_filters( 'woocommerce_cart_discounts_before_tax', $discounts_before_tax, $this );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.3.0 | Introduced. |