All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mikedesign

Pages: [1]
1
Thanks for replying! Do you know anyway around this? Or does anyone else in this forum know a way to display pagination before the comment loop?

Much appreciated! Thanks,
Mike.

2
No. Here's a very simple test:

<?php if ( have_comments() ) : ?>
   <h3 id="comments"><?php comments_number('No Comments', 'One Comment', '% Comments' );?></h3>

   <div class="navigation">
      <div class="alignleft"><?php previous_comments_link() ?></div>
      <?php if(function_exists('wp_commentnavi')) { wp_commentnavi(); } ?>
      <div class="alignright"><?php next_comments_link() ?></div>
   </div><br class="clear">

   <ol class="commentlist">
   <?php wp_list_comments(); ?>
   </ol>

   <div class="navigation">
      <div class="alignleft"><?php previous_comments_link() ?></div>
      <?php if(function_exists('wp_commentnavi')) { wp_commentnavi(); } ?>
      <div class="alignright"><?php next_comments_link() ?></div>
   </div>

So the pagination should appear in 2 places - above the comments and below. In each place it should be positioned between the "older comments" and "newer comments" default WordPress links. BUT the pagination only appears AFTER the comment loops and NOT before (but the "older comments" and "newer comments" link appear in both places).

Any help would be greatly appreciated. Thanks!

3
Anyone?

4
Really? When I put it before the loop:

<ol class="commentlist">
   <?php wp_list_comments(); ?>
</ol>

Then it doesn't show up but if i put it further below - then it does. I would like to display the navigation on top of the comments - any ideas?

Note: I'm running WordPress 3.0.4.

Thanks so much!! Very appreciated.
Mike.

5
I would like to display the pagination for the comments at the top of the page - so I need to place the code BEFORE the comments loop. Is there any way to do that?

Thanks a lot in advance!
Mike

Pages: [1]