Follow ReviewsForJoomla on Twitter
 
Navigation


How to make part of theme visible only to registered users

From Documentation

Jump to: navigation, search

Use this code in the theme files:

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