Have you put the code inside or outside of your entries loop on your single entry template?
I’m assuming the single entry template is the template that displays only a single post? I have one template displaying every post, truncated up to 200 characters, and a read more link. Upon the user clicking the read more link, a new template called “post-title” is used. I am assuming “post-title” is my single entry template.
I have the code pasted in the “post-title” template. I tried inserting the code above into the entries channel loop and outside of it, but to no avail. I’m guessing I have some conditions wrong, and am missing some code.
Here is a snippet from my post-title template:
{exp:channel:entries channel="{segment_1}" limit="1"}
<a href="http://{site_url}">Home Page</a> »
{if '{segment_3}' != ""}
<a href="http://{path={segment_1}}">{channel}</a> »
{title}
{if:elseif '{segment_2}' == ""}
{channel}
{/if}
{/exp:channel:entries}
{exp:channel:entries channel="{segment_1}" limit="1" dynamic="on"}
<h2>{title}</h2>
<p> {news_body}</p>
<p> <br />
{exp:comment:entries sort="asc" limit="20"}<br />
{comment}<br />
By {name} on {comment_date format="%Y %m %d"}<br />
{/exp:comment:entries} </p>
<p> {/exp:channel:entries}
I don’t have code to display a form either.