I currently am working on a site that I already created a comments.php file for that I want to appear on all the single.php pages. It does this without any problems. I can also call to it from the home/index page using the following line of code:
<?php global $withcomments; $withcomments = 1; comments_template( '', true ); ?>
My questions is this: On the home page, I don't want the reply box to show. I only want the comments (if there are any) to show up. To accomplish this, I created and additional file called comments-noreply.php (similar to comments.php) but I can't figure out how to call to it from the home page. I tried the following code, but it didn't work:
<?php global $withcomments; $withcomments = 1; comments_template( TEMPLATEPATH . '/comments-noreply.php', true ); ?>
I think I am close, but obviously I am still missing something.
Can anyone please advise how to call to an alternate comments template from the index file?