Well the link to the plugin you sent in post #3 is for 'WP Hide Posts' and the link to the plugin in post #9 is called 'HidePost' and they work differently and have different functions.
Actually there is a very simple way to get this to work without using any plugin. Starting in 3.4, you can control the 'loop' at ATO->Style & edit CENTER COLUMN
To prevent post from showing to users that are not logged in, you can use a php IF with the Wordpress 'is_user_logged_in()' function.
in teh section 'The LOOP', locate the line:
HTML Code:
<?php bfa_post_bodycopy('<div class="post-bodycopy clearfix">','</div>'); ?>
and change it to:
HTML Code:
<?php if ( is_user_logged_in()) {
bfa_post_bodycopy('<div class="post-bodycopy clearfix">','</div>');
}
else {
echo '<p><h2>* * * You must be logged in to read the posts* * *</h2></p>';
}
?>
then in the section 'Content BELOW the LOOP' locate the line
HTML Code:
<?php /* Load Comments template (on single post pages, and static pages, if set on options page): */ bfa_get_comments(); ?>
to
HTML Code:
<?php /* Load Comments template (on single post pages, and static pages, if set on options page): */
if ( is_user_logged_in()) {
bfa_get_comments();
} ?>
This should prevent any user who isn't logged in from reading anything but the post titles