So here is how i fixed this. the code is in your template header and this is the bit of code you need to remove.
<h1 class="entry-title">
<?php if ( is_day() ) : ?>
<?php echo get_the_date(); ?>
<?php elseif ( is_month() ) : ?>
Monthly Archives: <?php echo get_the_date( 'F Y' ); ?>
<?php elseif ( is_year() ) : ?>
<?php echo get_the_date( 'Y' ); ?>
<?php elseif(is_category()) : ?>
<?php echo single_cat_title( '', false ); ?>
<?php elseif(is_tag()) : ?>
<?php echo single_tag_title(); ?>
<?php else : the_post(); ?>
<?php echo get_the_author(); ?>
<?php rewind_posts(); endif; ?>
</h1>