Works on Vbulletin 3.72 PL2
For all those having trouble with this MOD showing the avatar in the memberlist, here is the simple fix brought to you by Frankenberrie
Download the mod then open it and remove the following code from it:
Code:
<plugin active="1" executionorder="5">
<title>Memberlist</title>
<hookname>memberlist_bit</hookname>
<phpcode><![CDATA[if ($vbulletin->options['zh_noavatar_onoff'] == '1')
{
if (!$avatarurl)
{
$zhavapath = $vbulletin->options['zh_noavatar_path'];
$avatarurl = $zhavapath;
//make sure the avatar collumn is displayed
$show['avatar'] = true;
$show['avatarcol'] = true;
}
}]]></phpcode>
</plugin>
DONE! ENJOY====