Skip to content

How To Enable Threaded Comments In Blogger

Have you ever tried one of the default Blogger templates? They have a fully-functioned threaded comments form. However, you won’t see this threaded comments in your own or most of unofficial Blogger templates. In this tutorial, I’ll show you how to enable threaded comments in your unofficial Blogger templates without turning back to official Blogger templates.

Navigate to your Dashboard > Template > Edit HTML. Search for the following code:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
  <b:include data='post' name='comments'/>
</b:if>

Replace it with:

<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
  <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 == &quot;item&quot;'>
  <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>

Save your template, and enjoy the discussion on your Blogger blog.

Leave a Reply

Your email address will not be published. Required fields are marked *