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

Pages: [1]
1
WP-PageNavi / Duplicate Meta Description
« on: 14 June 2010, 16:09 »
Hello,
I am getting duplicate meta description error in Google Webmastertool dashboard. I am wondering if I can add noindex tag with pagination. If so how should I implement it.
Thanks
Shob

2
WP-PostViews / Re: Most viewed per category
« on: 01 February 2009, 12:02 »
Thanks a lot. It is working nicely on archive.php.

3
WP-PostViews / Re: Most viewed per category
« on: 31 January 2009, 18:51 »
Lester, I appreciate very much for providing out of scope help. Sadly, this code is still giving me N/A., I have given up now as I don't know about PHP.

Probably, you can include this as a new feature in a future version of this plugin. I am a confident many people wanted this.

Thanks again and Have a nice weekend.

4
WP-PostViews / Re: Most viewed per category
« on: 31 January 2009, 10:16 »
Hi Lester,
I tried your code as following
<?php if (function_exists('get_most_viewed_category')): ?>
   <ul>
      <?php get_most_viewed_category('get_query_var("cat")','both',10); ?>
   </ul>
<?php endif; ?>

I got N/A as output. I sent you a PM regarding this modification.
Thanks
shob

5
WP-PostViews / Re: Most viewed per category
« on: 30 January 2009, 19:11 »
I am using following code...does not work.
<?php $cat = get_the_category(); $cat = $cat[0]; ?>
<?php
query_posts(array('cat'=>$cat->cat_ID,'showposts'=>'5',));?>
<?php get_most_viewed_category(); ?>
<?php endwhile; ?>

6
WP-PostViews / Most viewed per category
« on: 30 January 2009, 10:50 »
I am using most viewed post per category code to show most viewed posts from category. But it can only show posts if I defined category ID. Is thee any way it takes category ID itself and shows posts from that categroy. I am planning to use in single page.

Pages: [1]