WC_Legacy_Coupon::enable_free_shipping()publicWC 1.0

Check if a coupon enables free shipping.

Метод класса: WC_Legacy_Coupon{}

Хуков нет.

Возвращает

true|false.

Использование

$WC_Legacy_Coupon = new WC_Legacy_Coupon();
$WC_Legacy_Coupon->enable_free_shipping();

Код WC_Legacy_Coupon::enable_free_shipping() WC 8.7.0

public function enable_free_shipping() {
	wc_deprecated_function( 'WC_Coupon::enable_free_shipping', '3.0', 'WC_Coupon::get_free_shipping' );
	return $this->get_free_shipping();
}