diff --git a/ghost/portal/src/components/pages/OfferPage.js b/ghost/portal/src/components/pages/OfferPage.js index 875e8769fe..4f501b67a1 100644 --- a/ghost/portal/src/components/pages/OfferPage.js +++ b/ghost/portal/src/components/pages/OfferPage.js @@ -513,6 +513,18 @@ export default class OfferPage extends React.Component { ); } + renderFreeTrialMessage({offer}) { + if (offer.type === 'trial') { + return ( +

+ After a free trial ends, you will be charged regular price for the tier you’ve chosen. You can always cancel before then. +

+ ); + } + + return null; + } + renderProductCard({product, offer, currencyClass, updatedPrice, price, benefits}) { if (this.state.showNewsletterSelection) { return null; @@ -539,7 +551,7 @@ export default class OfferPage extends React.Component {
{this.renderSubmitButton()}
- + {this.renderFreeTrialMessage({offer})} {this.renderLoginMessage()}