Quote:
Originally Posted by OcR Envy
Sorry should have been more specific. The avatar image is still the normal one not the one that includes the eggs etc.. The post you referred me to seems to be about the placement of the link image. I tried anyways no change.
|
This is done in the postbit_display_complete hook by replacing the variable $post['avatarurl'].
PHP Code:
global $vbulletin;
if ($vbulletin->options['eggavatar_active'] AND (($vbulletin->userinfo['permissions']['eggavatarpermissions'] & $vbulletin->bf_ugp_eggavatarpermissions['eggavatarcanuseeggs']) OR ($vbulletin->userinfo['permissions']['eggavatarpermissions'] & $vbulletin->bf_ugp_eggavatarpermissions['eggavatarcancleanown'])))
{
eval('$post[onlinestatus] .= " ' . fetch_template('eggav_add_control') . '";');
$post['avatarurl'] = 'eggavatar.php?do=showeggs&u=' . $post['userid'] . '&pid=' . $post['postid'] . '&old=' . $post['avatarurl'] . '&t=' . TIMENOW;
}
Same section of code as the button.