diff --git a/docs/change-domain-name.md b/docs/change-domain-name.md
index 22e1cd13..8a52ca4e 100644
--- a/docs/change-domain-name.md
+++ b/docs/change-domain-name.md
@@ -6,12 +6,16 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
Please follow these steps if you have changed the domain name of your site and would like your new domain name to be displayed in your Plausible dashboard. You won't lose any of your historical stats in this process.
-Note that once you change the domain in your Plausible site settings, you must update the JavaScript snippet on your site within 72 hours to guarantee continuous tracking. If you're using our APIs, you must also make sure to update your API credentials.
-
:::tip Looking to transfer a site to a different Plausible account?
Use the [site ownership transfer](transfer-ownership.md) functionality instead
:::
+## How to change your site domain in Plausible site settings?
+
+:::important
+Once you change the domain in your Plausible site settings, you may have to take additional steps to ensure your Plausible integration continues to work seamlessly. Please see the [list below](#domain-change-checklist).
+:::
+
Here's how to change the domain name of a site in your Plausible account:
* Go to the "**General**" section of the [website settings](website-settings.md) in your Plausible account
@@ -22,16 +26,57 @@ Here's how to change the domain name of a site in your Plausible account:
* Type in your new domain name. Please, remove `https` and `www` from the domain, just keep the hostname (`yourdomain.com`). For example, if your new domain is `https://www.yourdomain.com` then the part to enter in the "**Domain**" field is `yourdomain.com`
-* Click on the "**Change domain and add new snippet**" button to confirm the domain name change
+* Click on the "**Change domain**" button to proceed with the domain name change
+
+* After a successful domain change, we will attempt to visit your new domain in order to advise you on the next steps (which depend on how you've set up Plausible). You should see a loading spinner while the process is ongoing, and a tailored recommendation once it finishes. Note that the same information is available in step 1 of the checklist below. We recommend you to go over that checklist to make sure your entire Plausible integration will continue working as before.
+
+## Domain change checklist
-
+In this section, we'll highlight everything that might need additional action after a successful domain change in Plausible.
-* Your new snippet will be displayed on the following screen. You need to update the script on your site to use the snippet with the new domain name as opposed to the old domain name within 72 hours to guarantee continuous tracking. If you're using our APIs, you must also make sure to update your API credentials.
+### 1. Ensure your tracking is working
-:::note How the 72 hour transition period works
-During the transition period, we will allow counting of the stats using both old and new snippets. After 72 hours, the old domain is cleared from our database and any new traffic sent to the old snippet will be rejected
+First and foremost, you'll need to make sure your stats are still tracking. Whether or not you need to take any action here depends on your setup.
+
+
| Installation type | +How do I know if I'm using this? | +Required action to ensure continuous tracking | +
|---|---|---|
| Script tag installation | ++ The snippet on your website contains the word `plausible.init`. This is also the case when you're using our official [Google Tag Manager template](https://tagmanager.google.com/gallery/#/owners/plausible/templates/plausible-gtm-template). + | +No action required | +
| WordPress plugin | +If your website is on WordPress, you're most likely using the plugin as that's the recommended installation method. | +Update the site domain in your plugin settings | +
| NPM package | +You're using the [@plausible-analytics/tracker](https://www.npmjs.com/package/@plausible-analytics/tracker) library | +Update the init options, e.g. `init({ domain: "your_new_domain.com", ... })` | +
| Legacy tracking snippet | +The Plausible snippet on your website includes the `data-domain` attribute. | +Update the snippet's data-domain attribute value, e.g. <script src="https://plausible.io/js/plausible.js" data-domain="your_new_domain.com" ...> |
+