WC_Product::is_purchasable()publicWC 1.0

Returns false if the product cannot be bought.

Method of the class: WC_Product{}

Hooks from the method

Return

true|false.

Usage

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

WC_Product::is_purchasable() code WC 8.7.0

public function is_purchasable() {
	return apply_filters( 'woocommerce_is_purchasable', $this->exists() && ( 'publish' === $this->get_status() || current_user_can( 'edit_post', $this->get_id() ) ) && '' !== $this->get_price(), $this );
}