Recent Topics

1 Aug 15, 2005 01:55    

Hi

how can i make that only user who are loged in can se the link list of the Bloks.

Thx 4 help

2 Aug 15, 2005 15:42

Do you mean the bloglist? Yes, if you want something to only show to people who are logged in, then open _main.php and do this:

<?php
if( is_logged_in() ){
//Whatever you only want to show to logged in members goes here, for example
require( dirname(__FILE__).'/_bloglist.php');
//placing that require in the if statement makes it only visible to logged in members
}


Form is loading...