WC_Product::has_enough_stock
Returns whether or not the product has enough stock for the order.
Method of the class: WC_Product{}
No Hooks.
Returns
true|false
.
Usage
$WC_Product = new WC_Product(); $WC_Product->has_enough_stock( $quantity );
- $quantity(mixed) (required)
- Quantity of a product added to an order.
WC_Product::has_enough_stock() WC Product::has enough stock code WC 9.9.3
public function has_enough_stock( $quantity ) { return ! $this->managing_stock() || $this->backorders_allowed() || $this->get_stock_quantity() >= $quantity; }