How to hide content for not-logged users?

You can for example edit templates\bootstrap2-responsive\property.php

And infos that need to be hidden for not-registered users, hide with something like this:

<?php if(count($not_logged)==0): ?>
//Your secret info here
<?php endif; ?>

If this is what you want, you owe me a beer :-)