<body class="blog logged-in">
to keep parts of a post from showing on the blog page, weither is is the landing page or another page,
a - go to ATO->Style & edit CENTER COLUMN->The LOOP
b - find the part you don't want, like
<?php bfa_post_footer('<div class="post-footer">','</div>'); ?>
c - change the leading '<?php ' to '<?php if (!is_home()) {'
d - change the ending from '?>' to ' } ?>'
so that
HTML Code:
<?php bfa_post_footer('<div class="post-footer">','</div>'); ?>
becomes
HTML Code:
<?php if (!is_home()) { bfa_post_footer('<div class="post-footer">','</div>'); } ?>
so to get rid of the byline you change
HTML Code:
<?php bfa_post_byline('<div class="post-byline">','</div>'); ?>
to
HTML Code:
<?php if (!is_home()) { bfa_post_byline('<div class="post-byline">','</div>'); } ?>