• I have not been able to get the comments to articles to show up when someone posts a comment. I approve them and you can click on a link that says comments…but they don’t just show up on the page like I see on a lot of pages. Is there somewhere I can choose to have them show up on the post?

Viewing 1 replies (of 1 total)
  • Here is a solution(only if you have knowledge in php):
    1.Open /wp-includes/comment-template.php
    2.Find the “function comments_template( $file = ‘/comments.php’ ){“
    3.Inside the function you will see :
    if ( ! (is_single() || is_page() || $withcomments) )
    return;
    Change this to
    if ( ! (is_single() || is_page() || $withcomments) )
    //return;
    4.Open /wp-content/themes/yourtheme/index.php
    add “<?php comments_template(); ?>” inside post loop
    “while (have_posts()) : the_post(); “

    Please note that the post comment text box will be displayed along with comments.

Viewing 1 replies (of 1 total)

The topic ‘Getting Comments to Display after posts’ is closed to new replies.