just a short feedback: the modified version works for me.
- WordPress 3.2.1
- Twenty-Eleven theme (as a basis, but modified)
what i did:
- edited comments.php so there is an <ol id="commentlist" class="commentlist"> (there was only a class of this name before, no ID)
- edited functions php with this:
add_filter('live_blogging_build_comments', 'twentyeleven_liveblogging_comments');
function twentyeleven_liveblogging_comments($a)
{
$a['callback'] = 'twentyeleven_comment';
return $a;
}
though i'm not sure it is needed or works - will try to remove it again.
until this point, id did not work.
- I installed the version of buddybonesbones with no further modifications to the theme or plugin -> now it works.