Hey zchristos!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
function avf_change_which_archive($output)
{
if(is_category())
{
$output = single_cat_title('',false);
}
return $output;
}
Cheers!
Yigit