FAQ - Content for Members/Guests

Content for Members/Guests

28.12.2015 2986


With CMS you can display content for members only, with a simple if statement you can display code only for guests or members.

{{if notmembers}}<a href="#" class="btn btn-primary btn-lg">Start Now it is Free</a>{{endif}}{{if members}}<a href="#" class="btn btn-primary btn-lg">Download Now</a>{{endif}}

Following line above will show content to the register page for guests and when the user is logged in it will show the link to the download area. Of course that is only an example you can place all content between the if statement.

Guests only

{{if notmembers}}your content{{endif}}

Members only

{{if members}}your content{{endif}}