The code is well documented
if you want educaton info: copy and past this somewere in taxonomy-portfoliocat.php
<!-- education info -->
<?php
//Pull education info from custom meta
$education_info = get_post_meta($post->ID,'resume_edu_',true);
if($education_info != '') {
?>
<?php _e("Education", "site5framework"); ?>
<?php
foreach ($education_info as $arr){
echo '
'.$arr['resume_edu_year'].'
'.$arr['resume_edu_degree'].'
';
}
?>
<?php } ?>
<!-- end education info -->