Default avatar

jdab

Madly Diligent
Joined
Aug 29, 2010
Messages
9,642
Reaction score
1
FP$
21
Can you make it so all new members get a default avatar, say the site's logo?
 
Yeah, try this modification: http://mods.mybb.com/view/default-avatar

Or you can run this SQL code:
Code:
UPDATE `mybb_users` SET `avatar` = 'location of avatar' WHERE `avatar` = ''

and that'll set everyone who doesn't have an avatar to what you put. But this doesn't change for new users. Best getting a modification.
 
JosephC said:
Yeah, try this modification: http://mods.mybb.com/view/default-avatar

Or you can run this SQL code:
Code:
UPDATE `mybb_users` SET `avatar` = 'location of avatar' WHERE `avatar` = ''

and that'll set everyone who doesn't have an avatar to what you put. But this doesn't change for new users. Best getting a modification.
Thanks!
 
Back
Top Bottom