This question may be related to a resolved thread.
Hello - I’m having some real difficulty getting my comment form to appear.
Here’s what I’ve done so far.
1. Comments are turned on for the channel.
2. Comments are turned on for the entry.
3. Conditionally including “single” blog view based on URL:
{if segment_2 == "entry"}
{embed="blog/.single"}
{if:elseif !segment_5 AND segment_3}
{embed="blog/.archive_listing"}
{if:else}
{embed="blog/.listing"}
{/if}4. URL contains url_title in segment_3
<a href="http://localhost/index.php/blog/entry/the_perfect_chinese_tea_ceremony">http://localhost/index.php/blog/entry/the_perfect_chinese_tea_ceremony</a>5. Here is the code for the page:
{exp:channel:entries channel="blog" url_title="{segment_5}" limit="1"}
<span class="date">{entry_date format="%F %d %Y"}</span>
<h2><a href="http://{path=blog}/{url_title}">{title}</a></h2>
<p> {if blog_main_image}<br />
{blog_main_image}<br />
{/if}<br />
{if blog_intro}<br />
{blog_intro}<br />
{/if}<br />
{if blog_body}<br />
{blog_body}<br />
{/if}<br />
{share_this} <br />
{/exp:channel:entries} <br />
{exp:comment:form channel="blog"}<br />
<input type="text" name="name" value="{name}" id="name" size="37" /><br />
<input type="text" name="email" value="{email}" id="email" size="37" /><br />
<textarea name="comment" rows="8" cols="35" id="comment" >{comment}</textarea><br />
<input type="submit" name="submit" value="Submit" /><br />
{/exp:comment:form}This is running on v2.1.1
Been trying to get this for 2 hours now. Any help would be greatly appreciated.