Quote:
Originally Posted by Micaiah
Is there a way to block custom pages like these from guests being able to view them unless they log in? with having the link to the pages in the navbar as well?
|
Just use an if condition in the template like this:
HTML Code:
<if condition="$show['member']">
ALL YOUR CONTENT HERE
<else />
<tr>
<td>
<h2>You need to be registered or logged in to view this page</h2>
</td>
</tr>
</if>