diff --git a/ghost/admin/app/components/gh-launch-wizard/set-pricing.hbs b/ghost/admin/app/components/gh-launch-wizard/set-pricing.hbs index 31da1f55f5..63f4ace1e2 100644 --- a/ghost/admin/app/components/gh-launch-wizard/set-pricing.hbs +++ b/ghost/admin/app/components/gh-launch-wizard/set-pricing.hbs @@ -66,7 +66,7 @@ checked={{this.isFreeChecked}} id="free-plan" name="free-plan" - disabled={{not this.settings.membersAllowFreeSignup}} + disabled={{not (eq this.settings.membersSignupAccess "all")}} class="gh-input post-settings-featured" {{on "click" this.toggleFreePlan}} data-test-checkbox="featured" diff --git a/ghost/admin/app/components/gh-launch-wizard/set-pricing.js b/ghost/admin/app/components/gh-launch-wizard/set-pricing.js index cefbb3ee13..b3e33e2843 100644 --- a/ghost/admin/app/components/gh-launch-wizard/set-pricing.js +++ b/ghost/admin/app/components/gh-launch-wizard/set-pricing.js @@ -46,7 +46,7 @@ export default class GhLaunchWizardSetPricingComponent extends Component { get isFreeChecked() { const allowedPlans = this.settings.get('portalPlans') || []; - return (this.settings.get('membersAllowFreeSignup') && allowedPlans.includes('free')); + return (this.settings.get('membersSignupAccess') === 'all' && allowedPlans.includes('free')); } get isMonthlyChecked() { diff --git a/ghost/admin/app/components/gh-members-payments-setting.hbs b/ghost/admin/app/components/gh-members-payments-setting.hbs index 05148fd5e5..b2a57ecc6e 100644 --- a/ghost/admin/app/components/gh-members-payments-setting.hbs +++ b/ghost/admin/app/components/gh-members-payments-setting.hbs @@ -216,70 +216,6 @@ -{{#unless (enable-developer-experiments)}} -
Configure members usage and default access levels
+Configure members usage and default access levels
-