Q:-How to Enable Threaded Comments in Customized Blogger-Blogspot Templates ?
If you want to know How to Enable Threaded Comments in Customized Blogger-Blogspot Templates, just flow the method
If you want to know How to Enable Threaded Comments in Customized Blogger-Blogspot Templates, just flow the method
Steps to Enable Threaded Comments in Blogger-Blogspot
- First of all make sure that your blog feed is set to Full. You can confirm that by going to Settings > Other and then selecting Full from the Allow Blog Feed dropdown.
- You must also have embedded comment form enabled. Check that by going to Settings > Posts and Comments and check the Comment Location dropdown.
- After that, open the Template section.
- Warning: Backup your current template before moving on.
- Click the Edit HTML button.
- A new window will open. You'd have to click the Proceed button to start editing.
- Check Expand Widget Templates option.
- Find the following line of code:
<b:includable id='postQuickEdit' var='post'>
Once you've found the above line, you'll see this piece of code: - Now, we need to find the following piece of code:
and REPLACE the above code with the following one:<div class='post-outer'>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:include data='post' name='comments'/>
</b:if>
</div><div class='post-outer'>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<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>
</div> - Click Save template and then Close button.
- Check your blog. If you can see the option of Reply under each comment then threaded commenting is enabled. Otherwise, upload your backup template.
</div>
</div>
</div>
</b:includable>
<b:includable id='postQuickEdit' var='post'>
Now, we need to add some code just BEFORE the above code. The code to add is: <b:if cond='data:blog.pageType == "static_page"'>
<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 adding the new code, overall code should look like this: <b:if cond='data:blog.pageType == "static_page"'>
<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>
</div>
</div>
</div>
</b:includable>
<b:includable id='postQuickEdit' var='post'>
yrdy
ReplyDelete