The #has handlebars helper not working with visibility?

Hello! @MLFromScratch

Maybe it will be useful to you:

<style>
.premium,
.free {
   display: none;
}

.premium.paid,
.free.members {
   display: block;
}
</style>

{{#if access}}
{{content}}
{{else}}			
<div class="premium {{visibility}}">
	<h2>Paying subscribers only</h2>
	{{#if @member}}
	<p>Upgrade your account</p>
	{{else}}
	<p>Sign up now and upgrade your account</p>
	{{/if}}
</div>
<div class="free {{visibility}}">
	<h2>Subscribers only</h2>
	<p>Sign up now</p>
</div>
{{/if}}
2 Likes