-
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
Big Sky GF: Add AI Copy to big sky plans step #99127
base: trunk
Are you sure you want to change the base?
Changes from all commits
32833d9
307d433
ca16564
4f550ba
4635b1d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -327,6 +327,8 @@ import { | |
FEATURE_WOO_AUTOMATE, | ||
FEATURE_CONNECT_ANALYTICS, | ||
FEATURE_LIMITED_SITE_ACTIVITY_LOG, | ||
FEATURE_BIG_SKY_WEBSITE_BUILDER, | ||
FEATURE_BIG_SKY_WEBSITE_BUILDER_CHECKOUT, | ||
} from './constants'; | ||
import type { FeatureList } from './types'; | ||
|
||
|
@@ -2630,6 +2632,22 @@ const FEATURES_LIST: FeatureList = { | |
}, | ||
/* END: Sensei Features */ | ||
|
||
[ FEATURE_BIG_SKY_WEBSITE_BUILDER ]: { | ||
getSlug: () => FEATURE_BIG_SKY_WEBSITE_BUILDER, | ||
getTitle: () => | ||
i18n.translate( '{{strong}}Unlimited AI Website Builder edits{{/strong}}', { | ||
components: { | ||
strong: <strong />, | ||
}, | ||
} ), | ||
getDescription: () => i18n.translate( 'Build your site with our AI Website Builder.' ), | ||
}, | ||
[ FEATURE_BIG_SKY_WEBSITE_BUILDER_CHECKOUT ]: { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The copy on the plans page should be bold, so we create a non bold one for the checkout page, maybe there is a better way to do this? |
||
getSlug: () => FEATURE_BIG_SKY_WEBSITE_BUILDER_CHECKOUT, | ||
getTitle: () => i18n.translate( 'Unlimited AI Website Builder edits' ), | ||
getDescription: () => i18n.translate( 'Build your site with our AI Website Builder.' ), | ||
}, | ||
|
||
[ FEATURE_UNLIMITED_ENTITIES ]: { | ||
getSlug: () => FEATURE_UNLIMITED_ENTITIES, | ||
getTitle: () => i18n.translate( 'Unlimited pages, posts, users, and visitors' ), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { getPlansListExperiment } from './experiments'; | ||
|
||
export function isGoalsFirst(): boolean { | ||
return ( | ||
getPlansListExperiment( 'calypso_signup_onboarding_goals_first_flow_holdout_20241220' ) === | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We are only showing the copy to the |
||
'treatment_cumulative' | ||
); | ||
} |
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.
This depends on this #99133 PR as the experiment name is changed there