Looking for help?
Enable product qty decimal for ALL product
add this code to yourtheme/functions.php or a snippet code
add_filter('op_product_data',function($product_data,$product){
$product_data['decimal_qty'] = 'yes';
return $product_data;
},102,2);