• https://www.mrdaley.com

    On my blog page, I have the home page that displays latest posts. However, I have a separate page for TEDX that displays the posts as well.

    However, on that TEDX page, I cannot comment on the posts after each post. There is one comment box at the bottom of the page, but I want users to be able to comment after each post on that TEDX page.

    I am using Twenty Ten Weaver, but there does not seem to be an option for that.

    Any help would be great!

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

    (@mrdaley2)

    Anyone?

    I would like the users to be able to comment from both the home page and another page on every post. Right now, there is only one “Leave a Reply” at the bottom of the page, but I would like the user to be able to leave comments after every post, just like on the home page.

    put the <?php comments_template() ?> before <?php endwhile; ?> line.

    Thread Starter mrdaley2

    (@mrdaley2)

    which .php file do I modify?

    Thanks!

    Thread Starter mrdaley2

    (@mrdaley2)

    This is the loop.php

    Comments’, ‘twentyten’ ) ); ?></span>
    <?php edit_post_link( __( ‘Edit’, ‘twentyten’ ), ‘<span class=”meta-sep”>|</span> <span class=”edit-link”>’, ‘</span>’ ); ?>
    </div><!– .entry-utility –>
    </div><!– #post-## –>

    <?php comments_template( ”, true ); ?>

    <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>

    <?php endwhile; // End the loop. Whew. ?>

    edit 162 line. replace <?php comments_template( '', true ); ?> with <?php if(is_home()){global $withcomments; $withcomments = 1;} comments_template( '', true ); ?>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Need to add comment boxes after each post on pages’ is closed to new replies.