Re: Totomer.com
The notions about the fold and some other things finally got through me. I just changed things around further; requiring registration to see the content, among other things.
I really like how easy it was with BBpress to make these changes possible – literally less than 20mins. To make things show up only when a user is logged in, I used a bunch of these:
<?php
if ( bb_is_user_logged_in() ) {
include ‘path/to/include.php’;
}
else {
echo ‘ ‘;
}
?>