-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: When account email address is updated, remind update WHOIS email #99739
base: trunk
Are you sure you want to change the base?
Conversation
Jetpack Cloud live (direct link)
Automattic for Agencies live (direct link)
|
This PR modifies the release build for the following Calypso Apps: For info about this notification, see here: PCYsg-OT6-p2
To test WordPress.com changes, run |
Here is how your PR affects size of JS and CSS bundles shipped to the user's browser: App Entrypoints (~74 bytes added 📈 [gzipped])
Common code that is always downloaded and parsed every time the app is loaded, no matter which route is used. Legend What is parsed and gzip size?Parsed Size: Uncompressed size of the JS and CSS files. This much code needs to be parsed and stored in memory. Generated by performance advisor bot at iscalypsofastyet.com. |
@@ -23,12 +24,20 @@ export default function emailVerification( context, next ) { | |||
context.page.replace( removeQueryArgs( context.canonicalPath, 'new_email_result' ) ); | |||
setTimeout( () => { | |||
const message = i18n.translate( | |||
"Email confirmed! Update domains' contact information if necessary." | |||
"Email confirmed! Please consider updating your domain's contact email to match your new email address." | |||
); | |||
const notice = successNotice( message, { | |||
duration: 10000, | |||
button: i18n.translate( 'Update information' ), | |||
href: '/domains/manage?site=all&action=edit-contact-email', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested this link that is currently present and it brings you to /domains/manage?site=all&action=edit-contact-email
which shows all the domains - either the ones you own or the sites where you are also an admin. I think it might be harder for the user to understand what they need to update in this case. I am wondering if we should somehow pre-filter the domains to only the domains that they own when they click on the current link?
Please review the discussions on the issue before reviewing this PR: #95673 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Closes #95673
Proposed Changes
This PR updates the wording for updating the contact information for the domain when the user confirms the change of the email on their account to make it more specific.
Testing Instructions
/me/account
Consider updating your domain's contact email to match your new email address
Update information
button/domains/manage?site=all&action=edit-contact-email
Alternatively:
/me/account
Pre-merge Checklist