how does the template file do the ‘2posts, then excerpt’ thingy?
simply follow this idea;
or paste the code of your template file into a http://wordpress.pastebin.com/ and post the link to it here.
change your line:
<?php boposts_show(); ?>
into this:
<?php if( absint($loop_counter) <= 1 ) boposts_show(); ?>
this is using the same condition, which controls if the full post is shown.
(btw: i coundn’t find where you had added yor line into the code of the template)
I used a hook plugin.
I just added that into the hook, but it didn’t change anything. Should I try adding it into the home.php ???
it might still work with the modification, as $loop_counter is a global variable;
maybe you need to expand the line to:
<?php global $loop_counter; if( absint($loop_counter) <= 1 ) boposts_show(); ?>
THANK YOU! THANK YOU! THANK YOU!! that worked!!
there is one small glitch I see though. When you open a single post there is a error warning in the bottom of the right sidebar
see here: http://www.nutritiouseats.com/turkey-chili-2/
did you notice that error message before your last edits?
maybe the theme website’s support can help?