Add conditions to check if members feature is enabled

This commit is contained in:
Sodbileg Gansukh
2022-05-26 16:08:10 +08:00
parent c205947374
commit e27f2190d6
5 changed files with 19 additions and 9 deletions

View File

@ -96,7 +96,9 @@ into the {body} tag of the default.hbs template --}}
</main>
{{!-- A signup call to action is displayed here, unless viewed as a logged-in member --}}
{{#unless @member}}{{#if access}}
{{#if @site.members_enabled}}
{{#unless @member}}
{{#if access}}
<section class="footer-cta outer">
<div class="inner">
{{#if @custom.email_signup_text}}<h2 class="footer-cta-title">{{@custom.email_signup_text}}</h2>{{/if}}
@ -108,7 +110,9 @@ into the {body} tag of the default.hbs template --}}
making the form validation and submission much simpler. --}}
</div>
</section>
{{/if}}{{/unless}}
{{/if}}
{{/unless}}
{{/if}}
{{!-- Read more links, just above the footer --}}