Quote:
Originally Posted by Barteken
but if there is no one logged in the page is still visible... how can i change this?
Grtz barteken
|
Theres a list of conditionals that you can use in the instructions and in the 2nd post of this thread.
https://vborg.vbsupport.ru/showpost....98&postcount=2
To show different content depending of if people are logged in or not, you want to use this one.
PHP Code:
<?php
If ($vbulletin->userinfo['userid']!=0)
{
echo "Your logged in so we can display this";
} else {
echo "Your not logged in so we display this";
}
?>
The content can be text, html, php, inlude another page etc.