How To Remove Blogger Threaded Comments? |
What are Blogger Threaded Comments?
Blogger Threaded Comments allow users to reply to comments of other users. Blogger Threaded Comments has 2 type of commenting original comments and replies to original comments. Want to remove blogger threaded comments? Follow my guide.Important Note: Backup your template before applying this method.
How To Remove Blogger Threaded Comments?
- Login Blogger Account.
- Go to Template > Edit HTML
- Click Ctrl + F.
- Search for the following code. You can also search the code by entering the first line of code in search box.
<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>
- After finding the above code replace that code with the following code. If you find the above code twice then you must replace that code twice.
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:include data='post' name='comments'/>
- Save Template.
- Done!