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.

Author Topic: is there a short code?  (Read 2751 times)

0 Members and 1 Guest are viewing this topic.

Offline jeromerobins

  • Newbie
  • *
  • Posts: 9
    • View Profile
is there a short code?
« on: 20 August 2009, 02:28 »
right now, this is only being shown on the search results page. is there a shortcode to add to my other php pages?

thx

j

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: is there a short code?
« Reply #1 on: 20 August 2009, 02:37 »
Read the readme.html and note the tabs on top. You have to add the php code in whatever pages you want it to be in your theme, contact your theme author in unsure.

++ lesterchan.net - Lester Chan's Website

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.

Offline jeromerobins

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: is there a short code?
« Reply #2 on: 20 August 2009, 02:45 »
thanks...i have no clue where that is...

Offline jeromerobins

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: is there a short code?
« Reply #3 on: 20 August 2009, 02:50 »
actually i found it but when i post it like it says (in the footer), it messes up the whole footer on my site.

so i wanted to load it into page.php instead but im getting things like 1 of 0.

how do i correct this? also is there a way to only have it on some pages & not all?

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: is there a short code?
« Reply #4 on: 20 August 2009, 03:02 »
It will not work in page.php. It paginate posts not pages.

For the default theme, index.php, archive.php will do. For your theme I have no idea, ask your theme author.

++ lesterchan.net - Lester Chan's Website

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.

Offline jeromerobins

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: is there a short code?
« Reply #5 on: 17 September 2009, 21:41 »
can u help me with this?

http://boaentertainmentgroup.com/wordpress/2009/06/14/dj-spotlight-anthony-attalla/comment-page-5/#comments

its got these terrible older posts/newer posts links. i want to put the pagination instead.

this is whats there right now:

<div class="navigation" style="padding:10px 2px 10px 2px;">
  <div class="alignright">
    <?php previous_comments_link() ?>
  </div>
  <div class="alignleft">
    <?php next_comments_link() ?>
  </div>
  <div style="clear:both;"></div>

thanks

jerome

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: is there a short code?
« Reply #6 on: 18 September 2009, 03:50 »
That is for the the comment pagination nothing to do with the page navigation. As I said the placement of code defers from theme to theme, i would suggest you ask your theme author instead.

For the default theme: you can replace:
Code: [Select]
<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries'?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;'?></div>
</div>
With the pagenavi code. The pagenavi code is given in the readme.html (note the tabs)

++ lesterchan.net - Lester Chan's Website

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.