WC_Shipping_Method::is_enabled()publicWC 2.6.0

Whether or not this method is enabled in settings.

Method of the class: WC_Shipping_Method{}

No Hooks.

Return

true|false.

Usage

$WC_Shipping_Method = new WC_Shipping_Method();
$WC_Shipping_Method->is_enabled();

Changelog

Since 2.6.0 Introduced.

WC_Shipping_Method::is_enabled() code WC 8.7.0

public function is_enabled() {
	return 'yes' === $this->enabled;
}