I recently downloaded the access_user_class and it works pretty well. The question I have is how to go about generating an if statement that would show different content based on user level.
Example Code:
if(access_page($level) > 5) {
echo "<div>You're above level 5</div>";
} else {
echo "<div>You're below level 5</div>";
}
Thanks for the help.
rob