diff --git a/ghost/admin/app/templates/settings/labs.hbs b/ghost/admin/app/templates/settings/labs.hbs index 25dca40ba1..b00a152ba8 100644 --- a/ghost/admin/app/templates/settings/labs.hbs +++ b/ghost/admin/app/templates/settings/labs.hbs @@ -226,19 +226,6 @@ -
-
-
-

Cardless trials

-

- Add support for expiring complimentary subscriptions -

-
-
- -
-
-
diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index 2dd9440f63..ac35cefba6 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -16,7 +16,8 @@ const messages = { // flags in this list always return `true`, allows quick global enable prior to full flag removal const GA_FEATURES = [ 'newsletterPaywall', - 'freeTrial' + 'freeTrial', + 'compExpiring' ]; // NOTE: this allowlist is meant to be used to filter out any unexpected @@ -30,8 +31,7 @@ const ALPHA_FEATURES = [ 'urlCache', 'beforeAfterCard', 'memberAttribution', - 'searchHelper', - 'compExpiring' + 'searchHelper' ]; module.exports.GA_KEYS = [...GA_FEATURES];