got another question.
i got here a little modified code so that registered users with 0 posts become an error message aswell. but it does not work. can you check it please?
Code:
function handle_bbcode_noguest($code)
{
global $bbuserinfo;
// remove empty codes
if (trim($code) == '')
{
return '';
}
if ($bbuserinfo['userid'] == 0) // Guest
{
return "<table width=\"70%\" cellpadding=\"5\" border=\"0\" style=\"background-color:#E9E0E0;border:1px dotted #555576;\">
<tr><td align=\"left\"><img src=\"http://img186.exs.cx/img186/637/attention6ir.gif\" border=\"0\" /></td><td>
<strong>Hello Guest! You are not logged in and therefore you can't see what has been posted here! Register and start being a member of the growing community to gain access to hidden features of the forum! Register by clicking <a href=\"register.php\">here</a>!</strong></td></tr></table>";
}
elseif ($bbuserinfo['userid'] == 2)
{
return "<table width=\"70%\" cellpadding=\"5\" border=\"0\" style=\"background-color:#E9E0E0;border:1px dotted #555576;\">
<tr><td align=\"left\"><img src=\"http://img186.exs.cx/img186/637/attention6ir.gif\" border=\"0\" /></td><td>
<strong>Hello! It seems like you have not yet participated in any discussion! Therefore you can't see what has been posted here! Please become an active part of our growing community!</strong></td></tr></table>";
}
else
{
return $code;
}
}
basicaly i added the elseif statement. should work, no?
i even tried this one:
Code:
function handle_bbcode_noguest($code)
{
global $bbuserinfo;
// remove empty codes
if (trim($code) == '')
{
return '';
}
if ($bbuserinfo['userid'] == 0 OR $bbuserinfo['userid'] == 2) // Guest
{
return "<table width=\"70%\" cellpadding=\"5\" border=\"0\" style=\"background-color:#E9E0E0;border:1px dotted #555576;\">
<tr><td align=\"left\"><img src=\"http://img186.exs.cx/img186/637/attention6ir.gif\" border=\"0\" /></td><td>
<strong>Hello Guest! You are not logged in and therefore you can't see what has been posted here! Register and start being a member of the growing community to gain access to hidden features of the forum! Register by clicking <a href=\"register.php\">here</a>!</strong></td></tr></table>";
}
else
{
return $code;
}
}
does not work either.