WC_Legacy_Cart::add_discount()publicWC 1.0

Renamed for consistency.

Method of the class: WC_Legacy_Cart{}

No Hooks.

Return

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 8.7.0

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