How to make part of theme visible only to registered users

From JReviews Documentation
Revision as of 07:40, 27 July 2013 by Jreviews (Talk | contribs)

Jump to: navigation, search

Use this code in the theme files:

<?php if($this->Access->isGuest()):?>
 
Register to View This Content
 
<?php else:?>
 
Content shown to registered users
 
<?php endif;?>