WC_Customer::get_calculated_shipping()publicWC 1.0

Has customer calculated shipping?

Method of the class: WC_Customer{}

No Hooks.

Return

true|false.

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->get_calculated_shipping();

WC_Customer::get_calculated_shipping() code WC 8.7.0

public function get_calculated_shipping() {
	return $this->calculated_shipping;
}