OK so I used a technique I found here: http://www.problogdesign.com/wordpress/advanced-wordpress-comment-styles-and-tricks/ to setup advanced, nested comments for effutio.
It all works fantastically untill I used the same technique on another site which used more Pages than Posts. There are two parts to the problem that happened on this site.
Firstly the “Reply” link (allowing you to reply to a specific user comment) didnt work and once the first comment was made on the page the comment form would disappear!
The fix to these bugs are as foloows:
1. In your comments.php theme file replace:
with this
2. In wp-includes/comment-template.php at line 1012 change:
$comment = get_comment($comment); $post = get_post($post);
to:
$comment = get_comment($comment); $post = get_post($comment->comment_post_ID);
Upload the updated files and hey presto the comment form shows on pages with a comment and you can now use the “Reply” link to respond to specific comments. Ahhhhhh the world has been put right once again. Incase you are wondering no1 above fixes the comment form disappearance and no2 fixes the Reply link bug!! Enjoy!
Related Posts:
- Pre-installation WordPress checklist
- Login directly from a page in WordPress using a sidebar login form
- Display your WordPress posts on other pages
- More Advanced Menu only logged in users or certain users can see
- Using multiple/different headers, sidebars, footers and comment templates in WordPress
- Custom WordPress Loop Breaks Pagination

