derek 0 Report post Posted October 27, 2009 Hey Andrew, Is there a way to have the comments expanded / shown by default on the main page of the blog i.e., the one with all the entries that fit on one page, not just a single blog entry? Appreciate it. Derek Cooper Photography www.derekcooper.com V 1-888-767-9106 Blog www.derekcooper.com/blog Share this post Link to post Share on other sites
Andrew 207 Report post Posted October 28, 2009 Is there a way to have the comments expanded / shown by default on the main page of the blog i.e., the one with all the entries that fit on one page, not just a single blog entry? I would look for a plugin that does this. I don't think this something that WP was built to do easily (I could be wrong) If you want to try something you could edit the '_posts.php' file and change this section: <?php if(is_single()):?> <?php include(LIB.'/_commentsform.php');?> <?php endif; endwhile; ?> to this: <?php if(is_single() || is_home()):?> <?php include(LIB.'/_commentsform.php');?> <?php endif; endwhile; ?> Its untested but it could work Share this post Link to post Share on other sites