olds
Elite Member
Looks like real easy edits but I couldn't do it. It's all Greek to me.
$10 after I upload the files and see that it works.
I am trying to set it so that users on a phpbb board don't show in the memberlist till they post.
I'll copy the php files to you via PM or Email.
Here is what needs to be done. It's not a script, just some lines need to be edited/replaced.
-----[ OPEN ]------------------------------------------
#
memberlist.php
#
#-----[ FIND ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS . "
#
#-----[ AFTER, ADD ]------------------------------------------
#
AND user_active = 1
#
#-----[ FIND ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS;
#
#-----[ REPLACE WITH ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS . " AND user_active = 1";
#
#-----[ OPEN ]------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS . "
#
#-----[ AFTER, ADD ]------------------------------------------
#
AND user_active = 1
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
$10 after I upload the files and see that it works.
I am trying to set it so that users on a phpbb board don't show in the memberlist till they post.
I'll copy the php files to you via PM or Email.
Here is what needs to be done. It's not a script, just some lines need to be edited/replaced.
-----[ OPEN ]------------------------------------------
#
memberlist.php
#
#-----[ FIND ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS . "
#
#-----[ AFTER, ADD ]------------------------------------------
#
AND user_active = 1
#
#-----[ FIND ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS;
#
#-----[ REPLACE WITH ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS . " AND user_active = 1";
#
#-----[ OPEN ]------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------
#
WHERE user_id <> " . ANONYMOUS . "
#
#-----[ AFTER, ADD ]------------------------------------------
#
AND user_active = 1
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM