Alright so im having a little bit of an issue pulling chat avatars from Wordpress over to Arrowchat..I have a feeling there is something wrong with the php file pulling the avatar images.. ( possibly folders are pointing in the wrong direction ) If someone could please take a look at this code and possibly point me in the right direction that would be amazing..We are currently running the latest version of Buddypress 1.6.5Wordpress 3.5.1Arrowchat 1.6.11I jumped on this project that my buddy set up but we have been having trouble pulling the avatars. What files should I be looking at or is there any reason why the php is not working correctly? If you could take a look at this code .. I have a feeling this is where the issue lands..\[code\]// Start Receive User Details if (check_if_guest($unfocus_chat[$i])) { $sql = get_guest_details($unfocus_chat[$i]); $result = $db->execute($sql); } else { $sql = get_user_details($unfocus_chat[$i]); $result = $db->execute($sql); } if ($result AND $db->count_select() > 0) { $chat = $db->fetch_array($result); if (((time()-$chat['lastactivity']) < $online_timeout) AND $chat['status'] != 'invisible' AND $chat['status'] != 'offline') { if ($chat['status'] != 'busy' AND $chat['status'] != 'away') { $chat['status'] = 'available'; } } else { $chat['status'] = 'offline'; } if (check_if_guest($unfocus_chat[$i])) { $link = "#"; $avatar = $base_url . AC_FOLDER_ADMIN . "/images/img-no-avatar.gif"; $chat['username'] = create_guest_username($unfocus_chat[$i], $chat['guest_name']); } else { $link = get_link($chat['link'], $chat['userid']); $avatar = get_avatar($chat['avatar'], $chat['userid']); } } // End Receive User Details\[/code\]