How to show comment box below a post

| 0 comments

1. Login into your blogger account.
2. Choose your blog and click “Layout”
3. Click “Edit Html” subtab on the “Template” tab
4. Mark expand Widget Template chechbox
5. Press Ctrl+F search

<p class='comment-footer'>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:postCommentMsg/></a>
</b:if>
</p>

6. Replace code block with:

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='comment-form'/> <b:else/>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:postCommentMsg/></a>
</b:if> </b:if>
</p>

7. Save Template
8. Go to Settings then Comments panel or your blog. Set Comment Form Placement to Embedded below post. The embedded comment form can not be used if you have Post Pages disabled.
9. Save settings.
10. Done.

Read more... "How to show comment box below a post"

My Blog List