One of the most common reasons for Blogger user to transfer their blog site in WordPress is only because of the commenting system in Blogger. But recently blogger introduced a new feature which allows its user to add a comment form at the bottom of the post. To enable this feature you need to login through blogger draft.
So if you want to use comment form at the bottom of the post in blogger then follow the steps below
- Log in to Blogger draft
- Then go to Settings > Comments > Comment form placement and select the Embedded below post option. Done!!

But if you are using a custom template it will not automatically pick up the new code for the comment form. You need to make a small change to your template code for this comment form to display.
Go to Layout> Edit HTML in your blog’s dashboard and check the “Expand widget templates” box
Then search for this code
<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>
Replace the above code with this new code
<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>

Now save the template. But remember you need to change whole settings through Draft blogger. For more details about this comment form at the bottom of the post feature visit Blogger Buster

0 comments ↓
There are no comments yet...Kick things off by filling out the form below.
You must log in to post a comment.