I just want to find the usergroup id of say 'unregistered' for vbulletin and direct them else where, thus >
Code:
// $notviewthumbs = vbulletin usergroup id's of those who cannot view thumbnails
$notviewthumbs1 = 1; // Unregistered / Not Logged In
$notviewthumbs2 = 2; // Registered (custom group check your vbulletin usergroup id's
etc etc etc
if (($usergroupid == $notviewthumbs1) || ($usergroupid == $notviewthumbs2) || ($usergroupid == $notviewthumbs3) || ($usergroupid == $notviewthumbs4) || ($usergroupid == $notviewthumbs5))
{
$imgtag = "<img border=\"0\" src=\"images/blank.gif\" alt=\"$altlang\" />";
$thumb .= "<a href=\"$badlink\">$imgtag</a>";
$post .="-";
}
else
-b6