From f0d1cf2d66e59fadfa19cf4284be172740b5b2b6 Mon Sep 17 00:00:00 2001 From: Djordje Vlaisavljevic Date: Thu, 28 Jul 2022 12:40:09 +0200 Subject: [PATCH] Updated newsletter paywall cta design (#15111) refs https://github.com/TryGhost/Team/issues/1705 - Made `max-width` smaller to avoid super-long lines - Added `span` elements with `nowrap` to avoid one or two-word orphans Co-authored-by: Rishabh --- .../core/server/services/mega/post-email-serializer.js | 6 +++--- .../server/services/mega/post-email-serializer.test.js | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ghost/core/core/server/services/mega/post-email-serializer.js b/ghost/core/core/server/services/mega/post-email-serializer.js index 296a810fbe..e066d61f18 100644 --- a/ghost/core/core/server/services/mega/post-email-serializer.js +++ b/ghost/core/core/server/services/mega/post-email-serializer.js @@ -350,9 +350,9 @@ function renderPaywallCTA(post) { style="position: relative; display: block; width: 100%; margin: 3em 0; padding: 0; height: 1px; border: 0; border-top: 1px solid #e5eff5;">

- Subscribe to continue reading.

-

Become a paid member of ${siteTitle} to get access to all - subscriber-only content.

+ Subscribe to continue reading. +

Become a paid member of ${siteTitle} to get access to + all subscriber-only content.

diff --git a/ghost/core/test/unit/server/services/mega/post-email-serializer.test.js b/ghost/core/test/unit/server/services/mega/post-email-serializer.test.js index 6d3425569b..ad412b4b19 100644 --- a/ghost/core/test/unit/server/services/mega/post-email-serializer.test.js +++ b/ghost/core/test/unit/server/services/mega/post-email-serializer.test.js @@ -105,12 +105,12 @@ describe('Post Email Serializer', function () { let output = renderEmailForSegment(email, 'status:free'); output.html.should.containEql(`

Free content

`); - output.html.should.containEql(`Subscribe to continue reading`); + output.html.should.containEql(`Subscribe to`); output.html.should.containEql(`https://site.com/blah/#/portal/signup`); output.html.should.not.containEql(`

Members content

`); output.plaintext.should.containEql(`Free content`); - output.plaintext.should.containEql(`Subscribe to continue reading`); + output.plaintext.should.containEql(`Subscribe to`); output.plaintext.should.containEql(`https://site.com/blah/#/portal/signup`); output.plaintext.should.not.containEql(`Members content`); }); @@ -146,12 +146,12 @@ describe('Post Email Serializer', function () { let output = renderEmailForSegment(email, 'status:free'); output.html.should.containEql(`

Free content

`); - output.html.should.containEql(`Subscribe to continue reading`); + output.html.should.containEql(`Subscribe to`); output.html.should.containEql(`https://site.com/blah/#/portal/signup`); output.html.should.not.containEql(`

Members content

`); output.plaintext.should.containEql(`Free content`); - output.plaintext.should.containEql(`Subscribe to continue reading`); + output.plaintext.should.containEql(`Subscribe to`); output.plaintext.should.containEql(`https://site.com/blah/#/portal/signup`); output.plaintext.should.not.containEql(`Members content`); });