[Headline] Member only post doesn’t show except on homepage

[Headline] Member only post doesn’t show excerpt on homepage - but the excerpt is showed on the post page

Would be ideal to show on the homepage to encourage click through

Can you explain a bit more?

Sure. I am not sure if this is a bug or by design but the excerpt (shown with arrow) does not appear on the homepage when using a members or paid members only setting.

Although the excerpt is shown on the post page.

Did you find a solution to this? Same problem, running Casper theme with latest version.

Members-only post excerpt is shown on the post page (which is appropriately locked behind the subscribe button) but not on homepage or index.

The code looks like it should call the excerpt:

{{#if excerpt}}

{{excerpt}}

{{/if}}

But it doesn’t. Full code for the post-card below:

    <a class="post-card-content-link" href="{{url}}">
        <header class="post-card-header">
            <div class="post-card-tags">
                {{#primary_tag}}
                    <span class="post-card-primary-tag">{{name}}</span>
                {{/primary_tag}}
                {{#if featured}}
                    <span class="post-card-featured">{{> "icons/fire"}} Featured</span>
                {{/if}}
            </div>
            <h2 class="post-card-title">
                {{#unless access}}
                {{^has visibility="public"}}
                    {{#unless feature_image}}
                        {{> "icons/lock"}}
                    {{/unless}}
                {{/has}}
                {{/unless}}
                {{title}}
            </h2>
        </header>
                {{#if excerpt}}
            <div class="post-card-excerpt">{{excerpt}}</div>
        {{/if}}
    </a>

    <footer class="post-card-meta">
        <time class="post-card-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date}}</time>
        {{#if reading_time}}
            <span class="post-card-meta-length">{{reading_time}}</span>
        {{/if}}
        {{#if @site.comments_enabled}}
            {{comment_count}}
        {{/if}}
    </footer>

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.