WC_Product_Variation::is_purchasable()publicWC 1.0

Returns false if the product cannot be bought. Override abstract method so that: i) Disabled variations are not be purchasable by admins. ii) Enabled variations are not purchasable if the parent product is not purchasable.

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

Хуки из метода

Возвращает

true|false.

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

$WC_Product_Variation = new WC_Product_Variation();
$WC_Product_Variation->is_purchasable();

Код WC_Product_Variation::is_purchasable() WC 8.7.0

public function is_purchasable() {
	return apply_filters( 'woocommerce_variation_is_purchasable', $this->variation_is_visible() && parent::is_purchasable() && ( 'publish' === $this->parent_data['status'] || current_user_can( 'edit_post', $this->get_parent_id() ) ), $this );
}