Frequently Asked Questions
How to print barcode label follow the product stock qty
add this shortcode to yourtheme/function.php to do itÂ
function custom_op_product_label_qty($qty,$product){ $product_qty = $product->get_stock_quantity(); if($product_qty) { return $product_qty; } return $qty; } add_filter('op_product_label_qty','custom_op_product_label_qty',10,2);
Last updated Wed, Sep 19 2018 6:50pm