Wrap the part in index.php or in your page template that displays the page heading into a conditional tag
PHP Code:
<?php if ( !is_page() ) ?>
....
<?php } ?>
if ( !is_page() ) means "If this is not a static 'Page' page"
In Atahualpa 3.3.3 this would be, in index.php:
PHP Code:
<?php if ( !is_page() ) ?>
<?php bfa_post_kicker(); ?>
<?php bfa_post_headline(); ?>
<?php bfa_post_byline(); ?>
<?php } ?>