Commit b1ce5a22d11 for woocommerce

commit b1ce5a22d11d05860cfbb23bf56cc74a7b0f5c5c
Author: Jana Hernandez <71137829+JanaMW27@users.noreply.github.com>
Date:   Tue Sep 1 15:11:32 2026 +0200

    Rename the default Payment method option from N/A to All methods available (#68187)

    The order screen's Payment method dropdown defaulted to "N/A", which names
    an absence instead of telling the merchant what happens: the customer is
    offered every method the store has enabled.

    Only the visible label changes. The option's stored value stays empty, so
    no order data changes.

    Co-authored-by: Claude Opus 5 <noreply@anthropic.com>

diff --git a/plugins/woocommerce/changelog/31339-payment-method-all-methods-label b/plugins/woocommerce/changelog/31339-payment-method-all-methods-label
new file mode 100644
index 00000000000..e68c9b01afa
--- /dev/null
+++ b/plugins/woocommerce/changelog/31339-payment-method-all-methods-label
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Rename the default Payment method option on the order screen from "N/A" to "All methods available", so it says what the customer will actually be offered.
diff --git a/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php b/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php
index 8f01dced6ba..cff5338a7b7 100644
--- a/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php
+++ b/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php
@@ -610,7 +610,7 @@ class WC_Meta_Box_Order_Data {
 							<p class="form-field form-field-wide">
 								<label><?php esc_html_e( 'Payment method:', 'woocommerce' ); ?></label>
 								<select name="_payment_method" id="_payment_method" class="first">
-									<option value=""><?php esc_html_e( 'N/A', 'woocommerce' ); ?></option>
+									<option value=""><?php esc_html_e( 'All methods available', 'woocommerce' ); ?></option>
 									<?php
 									$found_method = false;