avwebnet - ok then another way is that but You will lose one function 1. Go to settings in admin 2. Change "Administrator is able to see hidden pages" and give "NO".
If You want to have "Administrator is able to see hidden pages" to Yes then You must try to do this: 1. Edit index.php 2. Change
if( HIDDEN_SHOWS === true ) session_start( );
to
if( HIDDEN_SHOWS === true && isset( $_COOKIE['sLogin'] ) ) session_start( );
|