Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: changed

CelebrateLaunchModal: update domain upsell CTA copy to "Get your domain" for free plan + free domain sites.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function CelebrateLaunchModal( {
) }
</p>
);
buttonText = __( 'Claim your domain', 'jetpack-mu-wpcom' );
buttonText = __( 'Get your domain', 'jetpack-mu-wpcom' );
buttonHref = `https://wordpress.com/domains/add/${ siteSlug }`;
} else if ( isPaidPlan && isBilledMonthly && ! hasCustomDomain ) {
contentElement = (
Expand All @@ -73,7 +73,7 @@ export default function CelebrateLaunchModal( {
) }
</p>
);
buttonText = __( 'Claim your domain', 'jetpack-mu-wpcom' );
buttonText = __( 'Get your domain', 'jetpack-mu-wpcom' );
buttonHref = `https://wordpress.com/domains/add/${ siteSlug }`;
} else if ( isPaidPlan && ! hasCustomDomain ) {
contentElement = (
Expand All @@ -89,7 +89,7 @@ export default function CelebrateLaunchModal( {
) }
</p>
);
buttonText = __( 'Claim your free domain', 'jetpack-mu-wpcom' );
buttonText = __( 'Get your free domain', 'jetpack-mu-wpcom' );
buttonHref = `https://wordpress.com/domains/add/${ siteSlug }`;
} else if ( hasCustomDomain ) {
return null;
Expand Down
Loading