Quote:
Originally Posted by kh99
How did you create that page? If you used templates, you can do this:
Code:
<vb:if condition="$bbuserinfo[userid] != 0">
// This part shown to members only
</vb:if>
If your processupload.php script includes global.php, then you would also want to do something like this at the beginning (after including global.php):
Code:
if ($vbulletin->userinfo['userid'] == 0)
{
print_no_permission();
}
because you don't want to depend on the fact that the html page doesn't include the upload form.
|
I did use a template, where in the coding should this go? In any certain div,heading,body etc?
Code:
<vb:if condition="$bbuserinfo[userid] != 0">
// This part shown to members only
</vb:if>
--------------- Added [DATE]1351822013[/DATE] at [TIME]1351822013[/TIME] ---------------
EDIT:::::
I figured it out! Thanks so much.
How can i code it so that only user that are not logged in will see a message like
"You must be logged in to post pictures"
Is there a library of VB codes?