Quote:
Originally Posted by Billspaintball
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.
|
doesn't seems to work either :S