I’m on EE 2.3.1.
Comments module is enabled.
Allow comments is checked in both the channel’s preferences as well as on individual entries.
We only have two entries in the channel right now (it’s a blog.) Comments and comment form shows up properly on the first entry. The second entry is not showing the form or the comments (actually, there are no comments, but it’s supposed to be showing a {if no_results} blurb).
Any thoughts on what I’ve missed?
Comments List:
{exp:comment:entries sort="asc" limit="20"}
<div class="comment">
<div class="comment_info">
<strong>{url_as_author}</strong>
</div>
<div class="comment_body">
{comment}
</div>
<span class="comment_date">{comment_date format="{global:date_short}"}</span>
</div>
{if no_results}
There are no comments on this article yet. Why not be the first?
{/if}
{/exp:comment:entries}Comment Form:
{exp:comment:form channel="blog" form_class="nice"}
{if logged_out}
<label for="name">Name:</label> <input type="text" name="name" id="name" value="{name}" class="input-text" />
<label for="email">Email:</label> <input type="text" name="email" id="email" value="{email}" class="input-text" />
<label for="url">URL:</label> <input type="text" name="url" value="{url}" id="url" class="input-text" />
{/if}
<label for="comment">Comment:</label>
<textarea name="comment" id="comment">{comment}</textarea>
<label><input type="checkbox" name="save_info" value="yes" {save_info} /> Remember my personal information</label>
<label><input type="checkbox" name="notify_me" value="yes" {notify_me} /> Notify me of follow-up comments?</label>
{if captcha}
<label for="captcha">Please enter the word you see in the image below:</label>
{captcha}
<input type="text" name="captcha" value="{captcha_word}" maxlength="20" class="input-text" />
{/if}
<input type="submit" name="submit" value="Submit" />
{/exp:comment:form}