D&D Forums - MyBB Plugins & Themes
Fix Empty Default Avatar - Printable Version

+- D&D Forums - MyBB Plugins & Themes (https://developement.design/forum)
+-- Forum: MyBB General Discussions (https://developement.design/forum/forumdisplay.php?fid=23)
+--- Forum: Tricks & Tutorials (https://developement.design/forum/forumdisplay.php?fid=11)
+--- Thread: Fix Empty Default Avatar (/showthread.php?tid=739)



Fix Empty Default Avatar - AmazOuz - 12-31-2018

Hello everyone Smile

Some of you use the avatar image source code {$mybb->user['avatar']} in a user header menu, but there is no image when user has the default MyBB avatar.

Here are two ways how you can fix it.

1.) Download my "MyBB Default Avatar Fix" plugin from here and include it into your theme package.

or

2) Include the small function into your own theme plugin:

PHP Code:
// defaultavatarfix function by SvePu (http://community.mybb.com/user-91011.html) //
function defaultavatarfix()
{
    global 
$mybb;

    if(!
$mybb->user['avatar'] && !empty($mybb->settings['useravatar']))
    {
        
$mybb->user['avatar'] = $mybb->settings['useravatar'];
    }
}
$plugins->add_hook("global_intermediate""defaultavatarfix"); 


Credits : https://community.mybb.com/thread-166660.html