How to Embed a Comment Box in Blogger Post ?

Learn How to Insert Comment Box on Every Blogger Post like wordpress ? It's very simple to learn and implement to make your user more friendly with comments for your post.


Go to Layout -> Edit HTML and mark the box Expand Widget Templates. Look for this piece of code:

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

Then Replace the Existing Code with This 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>
</b:if>

Save the Template and Check the Post : Your Problem Over
Previous Post Next Post