• Here is my comment.php. everything works except it puts the reply at the end of the comments every time.

    <?php if ( have_comments() ) : ?>
    <h3><?php comments_number('No Comments', 'One Comment', '% Comments' );?></h3>
     <ul class="commentlist"><?php wp_list_comments(); ?><?php comment_id_fields(); ?></ul>
    <div id="respond">
          <div class="reply"><?php comment_form_title( 'Leave a Reply  ', 'Leave a Reply to %s  ' ); ?><?php cancel_comment_reply_link() ?>
    	  <?php comment_form(); ?></div>
    </div>
     <div class="navigation">
        <div class="alignleft"><?php previous_comments_link() ?></div>
        <div class="alignright"><?php next_comments_link() ?></div>
    </div>
    <?php else : // this is displayed if there are no comments so far ?><?php comment_form(); ?>
    <?php if ('open' == $post->comment_status) :
                        // If comments are open, but there are no comments.
                else : // comments are closed
                endif;
        endif;
        ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • except it puts the reply at the end of the comments every time.

    what do you want instead?

    link to your site (to a post/page with comments illustrating your problem) ?

    Thread Starter Sharolyn Rogers

    (@sharolyn-rogers)

    Sorry It’s on my local host right now. I’ll try to get it up.

    Thread Starter Sharolyn Rogers

    (@sharolyn-rogers)

    When I click on the reply link a comment box opens up under the parent comment. When I submit the comment it is not placed under the parent comment but it is placed at the end of the comments. It is saved as a new comment not as a reply.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘comment_form_title replys always at the end’ is closed to new replies.