Best way to create a newsletter archive for members only

I get that I can create member-only pages
I get that I can create tag pages
But
Can I create a tag page that is accessible only by members?

For example, i want to create a newsletter archive that exists on the website BUT only for subscribers/members to access.

You can create a members-only archive by creating a custom page in combination with the [access] (Ghost Theme Development: Building custom membership flows) property.

In your template, you’d then do something like this:

{{#if access}}
...code for the archive
{{else}}
 <p>This archive is only available to members.</p>
{{/if}}
3 Likes