Is very easy to show some contents to anonymous AND some other to authenticated users in Drupal. You'll only need to adapt the following few lines of php to output your content:
<?php
global $user;
if (!$user->uid) { ?>
<div>anonymous content here</div>
<?php } else { ?>
<div>authenticated content here</div>
<?php } ?>Yep, that easy.
Post new comment