diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 89521b8e793..6cd0046ac04 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -3,6 +3,7 @@ 21.1 ----- +- [*] Payments onboarding: for two onboarding errors that show a wp-admin Payments setup URL in a webview ("Payments plugin not setup" and "Stripe overdue" errors that can occur to both WooPayments and Stripe Extension), the webview is now set to Payments Connect instead of Payments Overview. [https://github.com/woocommerce/woocommerce-ios/pull/14297] 21.0 diff --git a/WooCommerce/Classes/Extensions/Site+URL.swift b/WooCommerce/Classes/Extensions/Site+URL.swift index 3d29c12a01a..1ad32644005 100644 --- a/WooCommerce/Classes/Extensions/Site+URL.swift +++ b/WooCommerce/Classes/Extensions/Site+URL.swift @@ -28,9 +28,10 @@ extension Site { /// Returns the plugin URL from wp-admin that handles pending tasks or requirements during onboarding. /// Both WCPay and Stripe use the same URL. + /// Payments Connect page was recommended by the web team over Payments Overview page in pdfdoF-5Bo-p2#comment-6655 /// func cardPresentPluginHasPendingTasksURL() -> String { - return adminURL + "admin.php?page=wc-admin&path=%2Fpayments%2Foverview" + return adminURL + "admin.php?page=wc-admin&path=%2Fpayments%2Fconnect" } /// Returns the WooCommerce admin URL, or attempts to construct it from the site URL.