Ok after i got the switching problem i did the following to fix:
Find this code in: includes/class_xperience.php [around line 751]
PHP Code:
//this has to be hardcoded as the fetch_musername hook comes before style_fetch
if (strlen($stylevar[imgdir_misc])<2) $stylevar[imgdir_misc]="images/misc/";
//this has to be hardcoded as the fetch_musername hook comes before cache_templates
$awards.='<img border="0" src="'.$stylevar[imgdir_misc].'/level/award_'.$awardname.'" title="'.$awardtitle.'">';
//eval('$awards.= "' . fetch_template($MyTemplate) . '";');
And replace the code by this
PHP Code:
//this has to be hardcoded as the fetch_musername hook comes before style_fetch
if (strlen($stylevar[imgdir_misc])<2) $stylevar[imgdir_misc]="images/misc";
//this has to be hardcoded as the fetch_musername hook comes before cache_templates
$awards.='<img border="0" src="'.$stylevar[imgdir_misc].'/level/award_'.$awardname.'" title="'.$awardtitle.'">';
//eval('$awards.= "' . fetch_template($MyTemplate) . '";');