Sorry, you're right. I keep referring to 3.3.4 which is not even released yet. In the current version 3.3.3 change in index.php
PHP Code:
<?php bfa_post_kicker(); // Post Kicker: To edit the output, see functions/bfa_post_parts.php ?>
<?php bfa_post_headline(); // Post Headline: To edit the output, see functions/bfa_post_parts.php ?>
<?php bfa_post_byline(); // Post Byline: To edit the output, see functions/bfa_post_parts.php ?>
to
PHP Code:
<?php if ( !is_front_page() ) { ?>
<?php bfa_post_kicker(); // Post Kicker: To edit the output, see functions/bfa_post_parts.php ?>
<?php bfa_post_headline(); // Post Headline: To edit the output, see functions/bfa_post_parts.php ?>
<?php bfa_post_byline(); // Post Byline: To edit the output, see functions/bfa_post_parts.php ?>
<?php } ?>
Or use
!is_page() instead of
!is_front_page() to do this for all static pages
Alternatively you can create a home.php (for the front page) or a page.php (for all static pages) and delete those 3 lines in these new files, and upload them to the theme's root directory, i.e. /wp-content/themes/atahualpa333/