Threaded Comment Replies for Custom Templates
If you keep up with Blogger Buzz, you'll know that FINALLY they have threaded comment replies enabled for Blogger (similar to Disqus, how you can reply directly to comments on your posts and have it appear indented like a thread)! You can read the original article. Before, I had inserted a reply button script that allowed me to reply but it wouldn't be attached to the original comment, so that was annoying.
Now you can have threaded comment replies with the touch of a button. Simply go to Blogger Dashboard -> Settings -> Other: set allow blog feed to "full," then Settings -> Posts and Comments: comment location to "embedded" and voila - everything's set. BUT if you have customized templates like me, things get hairy. I found this very helpful site that's unfortunately in Malay, but with the help of Google Translate, you basically need the first two lines. I'll translate briefly here (code credit: www.themasdoyok.com )
0. Go to Blogger Dashboard -> Template. SAVE YOUR TEMPLATE FIRST ("backup/restore" in upper right corner)
1. Edit html -> Proceed -> check the box that says Expand Widget Templates
2. Control+F and search for this line
<b:include data='post' name='comments'/>3. Everywhere you see this line above, replace it with this (it appeared 3 times in my code):
<b:if cond='data:post.4. Easy, right? It should look something like this:showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>

























