I have this code:
$stock_status = $variation_obj->get_stock_status();
$stock_qty = $variation_obj->get_stock_quantity();
if( $stock_qty>0 )
return $term_name .= ' - ' . $stock_status . ' ('.$stock_qty.')';
else
return $term_name .= ' - ' . $stock_status;
}
I use it to show the variation stock status like "In Stock" or "Out of Stock". Currently this part of my function works, but show the stock status is this way:
So I want to ask someone how to show "In Stock" instead of "instock" as is shown in image under.
I tryed to use some functions for custom stock status, but looks like dont have any effect.
Any help please?
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…