Replace the original hack function inside b2functions.php with this one to get the "comment reply to commenter" as discussed in the forums. /**** THIS FUNCTION IS WRITTEN BY DODO/ Modified by LaughingLizard **** credit goes to http://pure-essence.net and http://dinki.mine.nu/weblog/ *******************************************/ function dodos_thread($comment_id) { global $postc,$id,$comment, $commentdata,$tablecomments,$querycount, $wpdb; $queryc = "SELECT * FROM $tablecomments WHERE comment_reply_ID = '$comment_id' ORDER BY comment_date DESC"; $queryd = "SELECT * FROM $tablecomments WHERE comment_ID = '$comment_id' ORDER BY comment_date DESC"; $querycount++; $resultc = mysql_query($queryc); $resultd = mysql_query($queryd); if ($resultc) { echo "
"; while($postc = mysql_fetch_object($resultc)) { //$commentdata = get_commentdata($postc->comment_ID); //print_r($comment); if ($postd = mysql_fetch_object($resultd)) $comment_orig_author = $postd->comment_author; $comment_ID = $postc->comment_ID; $comment_reply_ID = $postc->comment_reply_ID; $comment->comment_ID=$postc->comment_ID; $comment->comment_post_ID=$postc->comment_post_ID; $comment->comment_author=$postc->comment_author; $comment->comment_author_email=$postc->comment_author_email; $comment->comment_author_url=$postc->comment_author_url; $comment->comment_author_IP=$postc->comment_author_IP; $comment->comment_date=$postc->comment_date; $comment->comment_content=$postc->comment_content; $comment->comment_karma=$postc->comment_karma; if (strstr($comment->comment_content, '')) { $comment->comment_type = 'trackback'; } elseif (strstr($comment->comment_content, '')) { $comment->comment_type = 'pingback'; } else { $comment->comment_type = 'comment'; } ?>

This is a reply to 's comment by @   Reply to this comment

"; } // end of it result } // end of fuction /****************************************** END OF DODO'S THREADED COMMENTS *******************************************/