Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Thedirthound

    (@thedirthound)

    Sorry I have Heatmap theme with AWP plugin as well. Just starting up and just learning WordPress please help me LOL!!

    Thread Starter Thedirthound

    (@thedirthound)

    Is there a way to do this? I would be very grateful for any help

    Thanks

    Thread Starter Thedirthound

    (@thedirthound)

    Same here where is the help? I see the code that people say to put in but where do i put it? Please!!

    @thedirthound

    edit index.php of your theme
    (‘dashboard – appearance – editor’ – then select index.php from the list on th right)

    normally you would insert the comments after the post content; before the ‘endwhile;’ of the loop.
    the exact position depends on your theme (what theme are you using?).

    general guideline:
    as your single posts will already show the comments, you can have a look into single.php of your theme, and try to find the line with comments_template(); in there;
    then make a note of how this is arranged in relation to the endwhile; of the loop;
    and add the new code to the corresponding area in index.php:

    <?php
    $withcomments = 1; // force comments form and comments to show on front page
    comments_template();
    ?>

    if you have problems, you could paste the code of index.php into a https://wordpress.pastebin.com/ and post the link to it here.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to get comments thread onto main page’ is closed to new replies.