• Resolved jmdougla

    (@jmdougla)


    On my blog the “comments” tag is shown at the very top of the post. I would like to see it at the bottom of the post instead. Is there an easy way to move it. My template is Dark Side 1.0.3.

    See it here: http://jmdouglass.com

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • you will need to edit theme’s index.php and single.php and move the code for the comment link to below the_content()

    Thread Starter jmdougla

    (@jmdougla)

    Here are the 2 files. Maybe you could be a little more specific. I’m kind of green when it comes to programming.

    [code removed]
    Thanks

    ok I lied – you don’t need to mess with single.php

    look in index.php for this line

    <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
    remove that and look for

    <div class="post-body">
    <?php the_content('Read the rest of this entry »'); ?>
    </div>

    place it like so

    <div class="post-body">
    <?php the_content('Read the rest of this entry »'); ?>
    <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
    </div>

    do back up the file 1st

    Thread Starter jmdougla

    (@jmdougla)

    Thanks worked perfectly.

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

The topic ‘Move “comments” link’ is closed to new replies.