Avatars
By Kyttias Managed to get avatars working with the help of Nemesis on the Discord (thank you!) In template.php put this: PHP: $profile = $mysidia->db->select(“users_profile”, array(“uid”, “avatar”), “uid = ‘{$mysidia->user->getID()}'”)->fetchObject();if ($profile == NULL) $img = “”;else $img = “<img src=’../../”.$profile->avatar.”‘ class=’avatar’>”;$this->assign->(“avatar”,$img); That assigns the avatar image if the user has a profile and if they …