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: WP-Stats (Plugin Stats) Only Renders in WP Dashboard  (Read 5141 times)

0 Members and 1 Guest are viewing this topic.

Offline zzb

  • Newbie
  • *
  • Posts: 5
    • View Profile
Running WP 2.5.1
Theme WEB2.0

All aspects of WP-Stats is working fine except rendering Plugin Stats information.

Plugin-Stats options works fine in the Dashboard page in WP-Admin directory. I can select them on and off in the STATS options.

When viewing the STATS page on the website however, they do not render.  I am not sure that the "filtering" process is working right except that it does reflect ok in the Admin Dashboard rendering.

Is there some Theme conflicts that need to be resolved or CSS coding??  Can you point me to an example of the theme code that I would need to check and give me an example to compare it to?  I am certain I can fix this if I understood what part of the code is responsible.

Also --- I did deactivate the plugin and tried re-activating it.  All my plugins are up to date to the latest rev. as of 7/5/2008.

Thanks for any assistance.
ZZ

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: WP-Stats (Plugin Stats) Only Renders in WP Dashboard
« Reply #1 on: 06 July 2008, 16:01 »
Did you update the stats page url in wp-admin -> settigns -> stats?

++ 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 zzb

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: WP-Stats (Plugin Stats) Only Renders in WP Dashboard
« Reply #2 on: 06 July 2008, 18:12 »
Yes I did. All the other stats are rendering fine just the Plugin Stats don't show up.  Plugins like WP-Polls and WP-PostRatings.

There are no entries even though I did check them off in the options list.  I read somewhere on the board that CSS may or the filtering used to determine which plugins are being selected may not be working properly with the theme I am using (WEB 2.0) is this possible?

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: WP-Stats (Plugin Stats) Only Renders in WP Dashboard
« Reply #3 on: 07 July 2008, 04:39 »
I don't think it is a theme issue but you can try the default theme to see if it works.

++ 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 zzb

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: WP-Stats (Plugin Stats) Only Renders in WP Dashboard
« Reply #4 on: 08 July 2008, 00:39 »
No dice...  I just followed your suggestion and tried it on default as well as classic and it still does not show any output from your other plugins.   It seems odd that it works in the dashboard but not on the page. Can you point me to what lines of code run the filtering and if in fact there are any theme incompatibilities you are aware of. If so what might be the particulars interfering with the code??   Could it be related to the order the plugins were installed?  Open to any ideas but hopefully from someone who has experienced this issue and has isolated the cause.  No guessing please!

Thanks
ZZ

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: WP-Stats (Plugin Stats) Only Renders in WP Dashboard
« Reply #5 on: 08 July 2008, 06:56 »
Open up wp-postratings.php

Code: [Select]
### Function: Plug Into WP-Stats
if(strpos(get_option('stats_url'), $_SERVER['REQUEST_URI']) || strpos($_SERVER['REQUEST_URI'], 'stats-options.php') || strpos($_SERVER['REQUEST_URI'], 'wp-stats/wp-stats.php')) {
add_filter('wp_stats_page_admin_plugins', 'postratings_page_admin_general_stats');
add_filter('wp_stats_page_admin_most', 'postratings_page_admin_most_stats');
add_filter('wp_stats_page_plugins', 'postratings_page_general_stats');
add_filter('wp_stats_page_most', 'postratings_page_most_stats');
}

This is the code that plugs into wp-stats

++ 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.