Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I correctly replaced the code of functions.php shown in the follows:

    Original Code
    $comments_by_type = &separate_comments(get_comments('post_id=' . $id));

    Replace to;

    $get_comments= get_comments('post_id=' . $id);
    $comments_by_type = &separate_comments($get_comments);

    I misread the comments above. Now, it is working well after replacing the code. Great.

    I have exactly the same problem with kurtiskronk. It shows the header and the title of the first post, but nothing else. All pages are fine and others based on a category and tag are fine. It means only index.php does not work well.

Viewing 2 replies - 1 through 2 (of 2 total)