This is what I do for the user avatar on every page.
Put this in your config.php
PHP Code:
define('AVATAR_ON_NAVBAR', true);
Create new hook with this info.
Hook Location: fetch_userinfo
Execution order: 5
PHP code:
PHP Code:
if(defined('AVATAR_ON_NAVBAR') AND ($option & FETCH_USERINFO_AVATAR) AND $vbulletin->options['avatarenabled'])
{
require_once(DIR . '/includes/functions_user.php');
fetch_avatar_from_userinfo($user, false, true);
}
Plugin Active: yes
Also I am using 3.7.0 for the moment and it is working. I just download 3.7.1 about 2 hours ago and haven't got to it yet.