MyBB Community Forums

Full Version: Default Avatar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey there!!

is there a way to make a default avatar for those who have just signed up and havent yet posted?

i'm not taking about those waitting activation, i'm talking about people who haven't try to change their avatars.

I thought about making it using groups settings, but i think that wont work, coz it will affect those who have avatars.

SO the main idea is , each registered member will have an avatar that we select, then he can change it !!


Many thanks
forgot me Sad?
Curious as well.
Open member.php
Find:
			"showcodebuttons" => 1,
Add after:
			"avatar" => "./images/defaultavatar.gif",
Just change that filename to whatever and wherever your avatar is.

The above would set the avatar for new users, but for the existing ones with no avatar execute this SQL code in phpMyAdmin:

UPDATE mybb_users SET avatar='./images/defaultavatar.gif' WHERE avatar=''
and finnally Toungue haha
i will try it, but i'm going in the vacation now Confused !

thx mate
Works great.
-Thanks Dennis.