How can I
1. REMOVE the image of go to last post if the user is ANONYMOUS
I thought of this, But couldn't do it:
Code:
if ( count($forum_moderators[$forum_id]) > 0 )
{
$l_moderators = ( count($forum_moderators[$forum_id]) == 1 ) ? $lang['Moderator'] : $lang['Moderators'];
$moderator_list = implode(', ', $forum_moderators[$forum_id]);
else
{
$l_moderators = ' ';
$moderator_list = ' ';
}
2. Disable the Profile link of the moderator list(Under each category) if the user is ANONYMOUS the
I know I have to add these codes:
Code:
if ( $userdata['session_logged_in']
And
Code:
&& $poster_id != ANONYMOUS
Not sure how though.
Thanks.