• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

* Got it* Anyone here a phpbb wiz?

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
 
I charge $100/hr to do software dev, but since this should take me roughly 15 seconds, I'd only bill you 42 cents.

You can email me the files to the email address in my profile. (However, I'm about to leave my apartment, so I won't get back to you until later tonight)
 
Y'know, those are step-by-step instructions designed for DIY mods. They're really self-explanatory 🙂 You could've probably done it yourself in a shorter amount of time than it took to post this message.

Speaking of though, did it get done? 😉
 
Originally posted by: LeetestUnleet
Y'know, those are step-by-step instructions designed for DIY mods. They're really self-explanatory 🙂 You could've probably done it yourself in a shorter amount of time than it took to post this message.

Speaking of though, did it get done? 😉

I tried it and the site kept dying with sql errors. It was well worth it to pay someone who could wiz right through it a couple of bucks to do it for me.
I couldn't risk hosing the site.

Yes, alpha88 did it for me and it works.
 
Back
Top