Now blogger have comment form below post. I think this big news and I am very happy to hear that. How to activate blogger comment under post?
This step-step to change your template for comment form below post:
- Click settings on your draft dashboard and then click tab comment.
- On Comment form placement, chose Embedded below post.
This step-step to change your template for comment form below post:
- On Layout tab click Edit HTML then Expand Widget Templates.
- Search widget with id='Blog1' and find <b:includable id='comment-form' var='post'> inside that widget , if you couldn't found comment-form add this script under <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>.
<b:includable id='comment-form' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<h4><data:postCommentMsg/></h4>
<p><data:blogCommentMessage/></p>
<iframe allowtransparency='true' expr:src='data:post.commentFormIframeSrc' frameborder='0' height='275' id='comment-editor' scrolling='auto' width='100%'/>
</div>
</b:includable> - Next step is replace script inside <b:includable id='comments' var='post'>
<p class='comment-footer'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</p>
with<div 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>
</div> - Save and preview.



Post a Comment