WC_Cart::get_coupon_discount_tax_amount( string $code )

Get the discount tax amount for a used coupon (for tax inclusive prices).


Description Description


Parameters Parameters

$code

(Required) coupon code.


Top ↑

Return Return

(float) discount amount


Top ↑

Source Source

File: includes/class-wc-cart.php

	public function get_coupon_discount_tax_amount( $code ) {
		$totals = $this->get_coupon_discount_tax_totals();
		return wc_cart_round_discount( isset( $totals[ $code ] ) ? $totals[ $code ] : 0, wc_get_price_decimals() );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.