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 - yock

Pages: [1]
1
Cool deal, thanks for the reply gamerz. I'll work on a work around for it.

2
So heres my situation. I have a page displaying the same post twice. Each instance of the post calls the wp_postratings code. No biggie there. Everything is displayed fine.

The first post with the ratings displays and rolls over correctly.

When i roll over the second instance of that same post, the roll over activates on the first instance.

I have a feeling this is an AJAX issue where it just looks for the first instance of the post_id and activates the roll overs for that. If thats the case do you have some alternate solutions?

This sort of problem wont happen often on my site, but in the event that it does, I would like to have a solution for it. Thanks for the help.

3
WP-PageNavi / Re: List all Pages
« on: 28 February 2007, 04:07 »
ah yes, thats what I was asking. Guess I didnt phrase it correctly. But in any case your fix there did the job. When you put in 100 in your example it only shows the first 50 pages. Not sure if its supposed to do that, but its no big deal. I just changed it to 200, and it works fine for me. Thanks for the help Gamerz.

4
WP-PageNavi / Re: List all Pages
« on: 28 February 2007, 03:32 »
well on an older version of pagenavi all i had to do was add some minor changes to your code and it listed the pages in this fashion <<12345678910 >> instead of 12345...Last>>

it was something like this:
Quote
if ($paged >= 100) {
            echo '<a href="'.get_pagenum_link().'">&laquo; First</a> ... ';
         }
         previous_posts_link($prelabel);
         for($i = $paged - 100 ; $i  <= $paged +100; $i++) {
I had to change the areas where it says 100 from something else. But when i make those changes on your new script it throws and error at me. Any ideas?

5
WP-PageNavi / List all Pages
« on: 27 February 2007, 23:59 »
Hi gamerz, I've been using this plugin for a while. Just upgraded to 2.1 and thus added this new version of the plugin. I wanted to be able to list all the pages my site has instead of just a few. Do you have a quick work around for this? Thanks for the help.
-Yock

Pages: [1]