After purchasing the Core expression engine version my comment module isn’t working. I’m not sure if this is something I’ve done or if its a technical issue. I have the comment module installed but once i make a comment template with the comment submission form and entries nothing displays at all. Any advise would be greatly i mean greatly appreciated.
In case this helps, here is the code from my comments template.
{exp:comment:entries weblog="submission"}
<div class="user_comment">
{comment}
<div class="entry-info">Posted by {url_or_email_as_author} on {comment_date format='%m/%d'} at {comment_date format='%h:%i %A'}</div>
</div>
{paginate}
<div class="navi-pages">
Page {current_page} of {total_pages} pages {pagination_links}
</div>
{/paginate}
{/exp:comment:entries}
<div class="user_comment">
{exp:comment:form preview="graphembed/comment_preview"}
{if logged_out}
Name:
<input type="text" name="name" value="{name}" size="50" />
Email:
<input type="text" name="email" value="{email}" size="50" />
URL:
<input type="text" name="url" value="{url}" size="50" />
{/if}
<a >Smileys</a>
<textarea name="comment" cols="50" rows="12">{comment}</textarea>
{if logged_out}
<input type="checkbox" name="save_info" value="yes" {save_info} /> Remember my personal information
{/if}
<input type="checkbox" name="notify_me" value="yes" {notify_me} /> Notify me of follow-up comments?
{if captcha}
Submit the word you see below:
{captcha}
<input type="text" name="captcha" value="" size="20" maxlength="20" style="width:140px;" />
{/if}
<input type="submit" name="submit" value="Submit" />
<input type="submit" name="preview" value="Preview" /></p>
{/exp:comment:form}
</div>