Hey,
in single.php replace following code:
<div class="entry-head">
<span class="categories"><?php _e('Posted in: ', 'avisio'); the_category(', '); echo $terms; ?></span><span class='limit'>-</span>
<span class="date"><?php the_time('M d, Y') ?></span>
<span class="comments"><?php comments_popup_link(__('No Comments','avisio'), __('1 Comment','avisio'), __('% Comments','avisio')); ?></span>
</div>
with:
<?php if( get_post_type() != 'portfolio' ) {?>
<div class="entry-head">
<span class="categories"><?php _e('Posted in: ', 'avisio'); the_category(', '); echo $terms; ?></span><span class='limit'>-</span>
<span class="date"><?php the_time('M d, Y') ?></span>
<span class="comments"><?php comments_popup_link(__('No Comments','avisio'), __('1 Comment','avisio'), __('% Comments','avisio')); ?></span>
</div>
<?php } ?>
and:
<div class='entry commententries'>
<?php comments_template(); ?>
</div>
with:
<?php if( get_post_type() != 'portfolio' ) {?>
<div class='entry commententries'>
<?php comments_template(); ?>
</div>
<?php } ?>