// Allow decimal quantities in WooCommerce admin order edit add_filter( 'woocommerce_quantity_input_args', function( $args, $product ) { $args['step'] = 'any'; return $args; }, 10, 2 ); // Also fix the admin order item quantity field specifically add_action( 'admin_footer', function() { $screen = get_current_screen(); if ( $screen && $screen->id === 'shop_order' ) { echo ''; } } ); Shop – Page 51 – Glory Bees Sewing Center