Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Tutorials and Tips (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=27)
-   -   Fixing the size issue with avatars in private messages (http://www.mysidiaadoptables.com/forum/showthread.php?t=5650)

Micolai 06-16-2020 04:30 PM

Fixing the size issue with avatars in private messages
 
This tutorial I'm making because of a issue I ran into with private message avatar displays. I had my husband create a test account and he uploaded an image that was quite large. On his profile, the site sidebar's avatar was the right size, but when he sent me a test message I saw his avatar was its legit size, which was huge. So, thanks to Restless, she helped me make a fix for this issue.

- Open up your Files Manager
- Open up
classes/class_privatemessage.php and you will see this:

Quote:

public function getPostbar(){
if($this->mid == 0) return FALSE;
$sender = new Member($this->fromuser);
$sender->getprofile();
$this->postbar = new Table("postbar", "100%", FALSE);
$postHeader = new TRow;
$postHeader->add(new TCell(new Image($sender->profile->getAvatar(),'',150)));
$this->postbar->add($postHeader);
return $this->postbar;
}
You want to only change the
$postHeader bit. Yours will look different than mine because mine has the fix already so the code below is what you need to change your $postHeader to. So change to:

Quote:

$postHeader->add(new TCell(new Image($sender->profile->getAvatar(),'',150)));
The 150 is the size you want the avatar. Hope this helps!


All times are GMT -5. The time now is 02:42 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.