Answer the question
In order to leave comments, you need to log in
How to display information about the availability of a quantity of goods in woocomerce?
Good afternoon, you need to display information about the number of goods in stock. Thus, if there is less than 50 goods, we display its quantity. If more than 50 we write "more than 50 pcs." if 0 then we write "under the order". How to do it? I tried to display below but it does not display). Displays just how many items are in stock
Answer the question
In order to leave comments, you need to log in
is_in_stock is a boolean function, i.e. it returns true/false values
if ( $product->is_in_stock() ) {
echo '<div class="stock" >' . $product->get_stock_quantity() . ' в наличии</div>';
} else {
echo '<div class="out-of-stock" >Нет в наличии</div>';
}
$product->get_stock_quantity()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question