Self hosting Wordpress blogs have some plugins to Comments easily than Blogspot Blogs. Recently Blogger(Blogspot Hosted Blogs) introduced Inline comment form. Default blogger Templates have modified to show perfectly.Any custom or Old templates need to change the template code to display Inline Comment form. This Method display comment after every post as page type.
Steps to Setup Blogger Inline Comment-Form:
Login to Blogger in Draft (Important)
Go To >> Dashboard >> Settings >> Comments >> Comment Form Placement >> Check the Radio button embedded below post. Then Save Settings.
Screenshot of Setting

Next Go to 'Edit HTML', Check the Button Expand widget templates
Find the 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 code by following 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>
Save Template.Check your blog for confirmation.
If you have any problems Try the following Simple method
Find this line
<b:include data='post' name='comments' />
Modify above line as
<b:include data='post' name='comment-form'/>
Above method is very easy to modify comment form to Blogger. Thank you meet you in next post..
No comments:
Post a Comment
Hello, Write Your Here...