Here is how you change GRAVATAR avatar "monsters" to any specific image
Edit this file:
www.yourwebsitename.com/freichat/server/freichat.php
Find this code (line: 410) or just search for $avatar_url
$avatar_url = "http://www.gravatar.com/avatar/" . md5($guest) . "?s=24&d=wavatar"; //$this->url . "/client/jquery/user.jpeg";
Replace the code above to the code below:
$avatar_url = "http://png1.findicons.com/files/icons/1072/face_avatars/300/i04.png";
P.S. If you want to change the code back to GRAVATAR avatars just create a copy of original line and comment it.
Here is how you change GRAVATAR avatar "monsters" to any specific image
Edit this file:
www.yourwebsitename.com/freichat/server/freichat.php
Find this code (line: 410) or just search for $avatar_url
$avatar_url = "http://www.gravatar.com/avatar/" . md5($guest) . "?s=24&d=wavatar"; //$this->url . "/client/jquery/user.jpeg";
Replace the code above to the code below:
$avatar_url = "http://png1.findicons.com/files/icons/1072/face_avatars/300/i04.png";
P.S. If you want to change the code back to GRAVATAR avatars just create a copy of original line and comment it.