=============================
DESCRIPTION: In some cases, when using the Atahualpa 'Configure EXCERPTS' options, setting 'Posts or excerpts on HOME page?' to 'Only Excerpts' and setting 'Show the first X posts on HOME page as full posts?' to a number greater than 0 will result in only excerpts being displayed on the blog page.
CAUSE: This is caused because an assignment was accidently coded as a comparison
FIX: edit index.php and change line 8 from
HTML Code:
if (have_posts()) : $bfa_ata['postcount'] == 0; /* Postcount needed for option "XX first posts full posts, rest excerpts" */ ?>
HTML Code:
if (have_posts()) : $bfa_ata['postcount'] = 0; /* Postcount needed for option "XX first posts full posts, rest excerpts" */ ?>
reference: http://forum.bytesforall.com/showthread.php?t=7316