The Blogger Threaded commenting system allows to reader to reply other reader comments on it post. Blogger supports threaded commenting with two methods the first method is original comment and second method is replies to that comment. If you wish remove threaded comments out of your blogger blog, apply these steps
Step 1. Go To Blogger Dashboard > Template > Edit HTML
Step 2. Now Search ( CTRL + F ) the following code
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
Step 3. Now remove it (you will discover this code twice and change it out twice) and paste this code instead
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:include data='post' name='comments'/>
</b:if>
Step 4. Save the Template.
Post a Comment