I’m puzzled as to what’s going on here… I have commenting enabled on a site and it seems to be working fine, except for one entry.
This entry has commenting enabled checked in the entry itself.
I’ve tried stripping back my code to the following:
{exp:weblog:entries dynamic="on" weblog="events"}
{title}
{/exp:weblog:entries}
{exp:comment:entries sort="asc" url_title="{segment_2}" limit="20"}
{name} says:
{comment}
{comment_date format="%D, %F %d, %Y - %g:%i:%s"}
{if no_results}
There are currently no comments for this event.
{/if}
{/exp:comment:entries}
{exp:comment:form weblog="events"}
<fieldset>
<label for="name"><span>Name:</span><input type="text" id="name" name="name" value="{name}" placeholder="Enter your name here" /></label>
<label for="email"><span>Email:</span> <input type="text" id="email" name="email" value="{email}" placeholder="Enter your email address" /></label>
<label for="comment" class="textarea"><span>Comment:</span><textarea id="email" name="comment">{comment}</textarea></label>
{if captcha}
Please enter the word you see in the image below:
<label for="captcha"><input type="text" name="captcha" value="{captcha_word}" size="20" maxlength="20" /></label>
{captcha}
{/if}
<input type="submit" class="button" name="submit" value="Submit" />
</fieldset>
{/exp:comment:form}But still no joy i’m afraid. As I said, this seems to work fine for all other entries 😖
Any clues as to what’s going on here?