Hi, i see its not rare that people cant add custom avatar :) So i integrated successfully your grate plugin, all works fine. Now i'm trying to make custom avatar, and so far got nothing working... In config chat showing only for loggedin users, so i did:
public function get_users() {
//do not delete below comment
//CUSTOM_USERS_QUERY_START
$query = "SELECT DISTINCT status_mesg,username,session_id,status,guest,in_room,X.user_profile_avatar
FROM frei_session, friends_user AS X
WHERE time>" . $this->online_time2 . "
AND session_id!=" . $_SESSION[$this->uid . 'usr_ses_id'] . "
AND status!=2
AND status!=0
AND guest=0
AND X.user_id= session_id";
//CUSTOM_USERS_QUERY_END
//do not delete above comment
$list = $this->db->query($query)->fetchAll();
return $list;
}
In hardcode :
$avatar_table_name='friends_user'; //specifies the table where avatar information is stored
$avatar_column_name='user_profile_avatar'; //specifies the column name where the avatar url is stored
in log file i keep recieving Wrong method defined! Have no idea what does it even mean :)
After all manipulations no luck to get users avatar... Hope you could help me :)