diff --git a/plugins/woocommerce/src/Internal/Admin/WcPaySubscriptionsPage.php b/plugins/woocommerce/src/Internal/Admin/WcPaySubscriptionsPage.php index 3095c976522..cfaa159a931 100644 --- a/plugins/woocommerce/src/Internal/Admin/WcPaySubscriptionsPage.php +++ b/plugins/woocommerce/src/Internal/Admin/WcPaySubscriptionsPage.php @@ -93,7 +93,8 @@ class WcPaySubscriptionsPage { } // Ineligible if store address is not compatible with WCPay Subscriptions (US). - if ( ! WooCommercePayments::is_supported() ) { + $store_base_location = wc_get_base_location(); + if ( empty( $store_base_location['country'] ) || 'US' !== $store_base_location['country'] ) { return false; }