Open up enhanced.php and remove this code:
Code:
<h3><?php echo cat_id_to_name(get_theme_mod('featured_posts')); ?></h3>
<div class="homeblock-bottom">
<?php $recent = new WP_Query("cat=".get_theme_mod('featured_posts')."&showposts=".get_theme_mod('featured_posts_num')); while($recent->have_posts()) : $recent->the_post();?>
<?php if(sp_get_image()) : ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb-posts" src="<?php bloginfo('template_directory'); ?>/tools/timthumb.php?src=<?php echo sp_get_image(); ?>&h=<?php echo get_theme_mod('featured_posts_thumb_height'); ?>&w=<?php echo get_theme_mod('featured_posts_thumb_width'); ?>&zc=1" alt="<?php the_title(); ?>" /></a>
<?php else: ?>
<?php endif; ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content_limit(400, "[Read more...]", 'agentpress'); ?>
<hr/>
<?php endwhile; ?>
<?php // begin code that shows the link to the category archive - if all categories are selected, nothing is shown ?>
<?php if(get_theme_mod('featured_posts')) : ?>
<div class="featured-posts">
<strong><a href="<?php echo get_category_link(get_theme_mod('featured_posts')); ?>" rel="bookmark"><?php _e("More Posts From ", 'agentpress'); echo get_cat_name(get_theme_mod('featured_posts')); ?></a></strong>
</div>
<?php endif; ?>
<?php // end code ?>
</div>