WC_Legacy_Cart::add_discountpublicWC 1.0

Renamed for consistency.

Method of the class: WC_Legacy_Cart{}

No Hooks.

Returns

true|false True. if the coupon is applied, false if it does not exist or cannot be applied.

Usage

$WC_Legacy_Cart = new WC_Legacy_Cart();
$WC_Legacy_Cart->add_discount( $coupon_code );
$coupon_code(string) (required)
.

WC_Legacy_Cart::add_discount() code WC 9.9.3

public function add_discount( $coupon_code ) {
	return $this->apply_coupon( $coupon_code );
}