If you know how to edit plugins look for the plugin under anymedia called
global_setup_complete
Change it to this.
PHP Code:
if($foruminfo['anymenable'] || in_array(THIS_SCRIPT, array('blog', 'adv_index'))) {
eval('$headinclude .= "' . fetch_template('anymedia_header') . '";');
}
or if you don't have the blogs installed change it to this.
PHP Code:
if($foruminfo['anymenable'] || THIS_SCRIPT == 'adv_index') {
eval('$headinclude .= "' . fetch_template('anymedia_header') . '";');
}