Looking for help?
< All Topics
Print

Bulk print barcode label follow product qty

add this shortcode to your theme/ functions.php or code snippets plugin

function custom_op_product_label_qty($qty,$product){
    
    return $product->get_stock_quantity();
   
}
add_filter( 'op_product_label_qty', 'custom_op_product_label_qty' ,10,2);
Table of Contents