There is a very small, but significant code error in the Mid-Century template set that affects the ability to have threaded replies to comments. Luckily it's an easy fix...
The original line (in the comments module) looks like this:
<input type="hidden" id="comment-parent_id" name="parent_id" value="<$MTCommentParentID$>" id="comment-parent-id" />
Notice that the first id attribute has an underscore where there is supposed to be a dash, and in fact the id attribute is duplicated.
Easy fix, just replace with:
<input type="hidden" id="comment-parent-id" name="parent_id" value="<$MTCommentParentID$>" />
Have you let Jim know?
MidCenturyTS-1.0
I found that line here:
plugins/MidCenturyTemplateSet/templates/blogbase/comments.mtml
line 90
And of course line 90 of the Comments module in each of my blogs.
Thanks.