Archive for the ‘WP-Polls’ Category

13th May 2008 (4 days ago)

Lester Chan’s WordPress Plugins June 2008 Update (Wave 1)

Tuesday, May 13th, 2008

Here is the first wave of my June 2008 plugins update containing 11 plugins. The remaining 4 plugins (WP-Ban, WP-DBManager, WP-DownloadManager and WP-PostViews) shall be in wave 2. All of them should work only on WordPress 2.5. It is not tested for any version below that.

The most general noticeable change would be the path to the plugin is now fixed. Previously it was nested in another folder and I got several hate mails because of that. Since the path problem has been solved, the Automatic Plugin Upgrade should work in theory.

Be sure to read the readme.html and checkout the changelog for more information and most importantly NOTE THE TABS AT THE TOP

WP-EMail 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PageNavi 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PluginsUsed 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Polls 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PostRatings 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Print 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-RelativeDate 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-ServerInfo 1.30
» Readme/Changelog
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Sticky 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Stats 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Useronline 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

Tags: ,

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (33 votes, average: 4.09 out of 5)
Loading ... Loading ...

20th March 2008

My Plugins And WordPress 2.5

Thursday, March 20th, 2008

The current version of all my plugins will work on WordPress 2.5 PROVIDED you have upgraded your WordPress blog from WP 2.x to WP 2.5.

If you are using a fresh copy of WordPress 2.5 together with my plugins, it WILL NOT work as WordPress 2.5 changes the Activation Global Scope Of The Plugins. In simpler terms, it means that upon activation of my plugins in WP-Admin, it will not create the tables needed by the respective plugins.

To solve this problem temporary, do the following in polls.php (I am using WP-Polls as an example):

Find:

1
2
3
$wpdb->pollsq = $table_prefix.'pollsq';
$wpdb->pollsa = $table_prefix.'pollsa';
$wpdb->pollsip = $table_prefix.'pollsip';

Replace:

1
2
3
4
global $wpdb;
$wpdb->pollsq = $wpdb->prefix.'pollsq';
$wpdb->pollsa = $wpdb->prefix.'pollsa';
$wpdb->pollsip = $wpdb->prefix.'pollsip';

Note the addition of the “global $wpdb;” and the replacement of “$table_prefix” with “$wpdb->prefix“.

I have updated WP-Polls, WP-ServerInfo, WP-Sticky and WP-UserOnline to work with WordPress 2.5. You can get them here at my downloads page (do note that they are still in beta). Those plugins that end with a “Beta 2″ means it will work for WordPress 2.5.

Some of the updates are:

  • Making sure that the styling, alignment and color of the plugin matches WordPress 2.5
  • Fixes the “Activation Global Scope” issue
  • Updated WP-Polls TinyMCE plugin to work with TinyMCE 3.0
  • Added a summary of WP-ServerInfo as a Dashboard Widget
  • Added a summary of WP-UserOnline in the Right Now Dashboard Widget

Tags: , , ,

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (58 votes, average: 3.81 out of 5)
Loading ... Loading ...

15th December 2007

Packed Javascript For WP-Polls

Saturday, December 15th, 2007

As I have received many request to optimized the Javascript for WP-Polls (I will also do it for other plugins but I will beta test it with WP-Polls first), I have used Dean Edwards Packer to pack my Javascript for WP-Polls and then I have moved the Dynamic Javascript variables out of the Javascript file and into the PHP page and now I can renamed it back to .js extension instead of .php.

These 2 things that I have done should help reduce the load on the server.

If are interested to test it out, you can download WP-Polls 2.30 Beta 1.

Tags: ,

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (61 votes, average: 3.82 out of 5)
Loading ... Loading ...

21st October 2007

Plugins Structure Changes

Sunday, October 21st, 2007

All my plugins will undergo a structure change to accommodate the Official WordPress Plugins Repository. This is also a much requested feature for most of my users as they complained that the zip file generated by WordPress Plugins Repository was 2 level deep and they got some issues when installing the plugin and the official plugin update notification will not work.

As posted in WordPress Ideas:

Some of us the older plugin authors are facing problem/hassle of restructuring the our plugin structure as our plugin name need not necessary follow the official plugin name folder naming convention.

And when user download the file from the repository, it will be the <official plugin name>\<plugin name>\<plugin>.php

As this is a major change, things will break, so I need you guys help to help me test it. The first plugin that rolls out this structure update will be WP-Polls.

The structure change for wp-polls involves:

  1. Using /wp-polls/ folder instead of /polls/
  2. Using wp-polls.php instead of polls.php
  3. Using wp-polls-widget.php instead of polls-widget.php
  4. Replacing all the old references with the new references stated above

Please kindly post any bugs found in WP-Polls Support Forum. Thank You.

I will roll out this updates to the rest of the plugins in December 2007/January 2008.

Tags:

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (46 votes, average: 3.8 out of 5)
Loading ... Loading ...

30th September 2007

Lester Chan’s WordPress Plugins October 2007 Update

Sunday, September 30th, 2007

As promised, I have release updates to 12 of my plugins and added 2 new plugins. All of them are compatible with WordPress 2.3 but not all of them are backward compatible with WordPress 2.1 or 2.2.

The 2 new plugins are WP-DownloadManager and WP-PluginsUsed. As the name of the plugins suggest, WP-DownloadManager simply enhanced your WordPress by adding a simple download manager to it. WP-PluginsUsed will displays both active and inactive plugins that you are using in your WordPress blog.

Be sure to read the readme.html and checkout the changelog for more information and most importantly NOTE THE TABS AT THE TOP

2 New Plugins:
WP-DownloadManager 1.00
» Compatible With WordPress 2.2, 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PluginsUsed 1.00
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

12 Updated Plugins:
WP-Ban 1.20
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-DBManager 2.20
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-EMail 2.20
» Compatible With WordPress 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PageNavi 2.20
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Polls 2.21
» Compatible With WordPress 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PostRatings 1.20
» Compatible With WordPress 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PostViews 1.20
» Compatible With WordPress 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Print 2.20
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-RelativeDate 1.20
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Sticky 1.10
» Compatible With WordPress 2.1, 2.2, 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Stats 2.20
» Compatible With WordPress 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Useronline 2.20
» Compatible With WordPress 2.3
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

Tags: ,

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (245 votes, average: 4.1 out of 5)
Loading ... Loading ...

22nd July 2007

Featured On Mashable/WLTC

Sunday, July 22nd, 2007

Mashable had featured 3 of my plugins namely WP-Polls, WP-PostRatings and WP-UserOnline in one of the post named 30+ AJAX-Powered WordPress Plugins.

Thank you Mashable!

Mark from Weblog Tools Collection also put in very nice words about me in his post.

Thank you Mark!

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (99 votes, average: 4.11 out of 5)
Loading ... Loading ...

23rd May 2007

Updated This Site WP-Polls To 2.11 RC1

Wednesday, May 23rd, 2007

I have updated this site WP-Polls to 2.11 RC1 to test out the multiple answers voting feature in WP-Polls 2.20. You can set the maximum number of answers that the user can vote, in this case, I set it to 14 as there are 14 answers.

Note the poll footer that says “Total Voters” and NOT “Total Votes”. The individual answer on the other hand is “Votes” and not “Voters” and the percentage is calculated based on the “Total Voters”.

Vote away on the right hand sidebar.

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (101 votes, average: 4.05 out of 5)
Loading ... Loading ...

17th May 2007

WP-Polls 2.20 RC1

Thursday, May 17th, 2007

I am proud to release WP-Polls 2.20 RC1, a lot of work and effort have been put into it and it is now ready to be tested. If there is no bugs reported before 1st June 2007, this will be the final release.

Changelog since WP-Polls 2.14:

  • NEW: Poll Archive Link, Individual Poll Header And Footer In Poll Archive Template
  • NEW: Poll Templates Has Now Its Own Page ‘WP-Admin -> Polls -> Poll Templates’
  • NEW: Poll Widget Can Now Display Multiple Polls
  • NEW: Ability To Allow User To Select More Than 1 Poll Answer
  • NEW: Added AJAX Style Option: “Show Loading Image With Text”
  • NEW: Added AJAX Style Option: “Show Fading In And Fading Out Of Polls”
  • NEW: Major Changes To The Administration Panel For WP-Polls
  • NEW: AJAX Added To The Administration Panel For WP-Polls
  • NEW: Default Poll’s Result Template Will Now Show Number Of Votes Beside The Percentage
  • NEW: Term “Total Votes” Changed To “Total Voters”. Refer To Here
  • NEW: Removed Polls From Feed If The Poll Is Embedded Into The Post Using

    Time Frame For Upgrading To WordPress 2.5?

    View Results

    Loading ... Loading ...
  • NEW: Filtering Of Individual Poll Logs
  • FIXED: Poll Archive Will Now Show Only Polls Results

As usual, if there is any bugs, PLEASE POST IT IN THE SUPPORT FORUMS and not in the comments. Thank you.

*UPDATE*
» WP-Polls 2.20

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (54 votes, average: 3.98 out of 5)
Loading ... Loading ...

15th April 2007

WP-Polls 2.20 Logs

Sunday, April 15th, 2007

Someone mentioned in the forums that since WP-Polls 2.20 allows users to vote for multiple answers, it make sense to revamp the whole logging part of WP-Polls and to allow administrator better understand his site’s voters preference.

I have since done so but it is still in a planning stages, comments and ideas are all welcomed. Here is a screenshot to get my point across.

I have removed the poll’s log from the Edit Poll and move it to its own page called log. There will be paging in the log page for sure.

There are 3 main ways you can filter the logs.

1. You can choose to display all the users that voted for a certain answers in a poll and you can choose what type voters you want to display.

2. View the answer voted by registered users or comment authors. It will not support guests.

3. You can choose to display the users who voted for more than 2 answers and what they voted for. This option is only available if the poll supports multiple answers.

Registered Users - It means the user is registered with your WordPress blog.
Comment Authors - Visitors who posted comments in your blog before and hence we are able to get his name/nickname via the cookies. 2 comment authors may share the same name, so it is not 100% accurate.
Guests - Self explanatory

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (91 votes, average: 3.88 out of 5)
Loading ... Loading ...

12th April 2007

WP-Polls 2.20 Updates

Thursday, April 12th, 2007

I have make the following additions/changes to WP-Polls 2.20:

NEW: Poll Archive Link Template
NEW: Poll Templates Has Now Its Own Page ‘WP-Admin -> Polls -> Poll Templates’
NEW: Poll Widget Can Now Display Multiple Polls
FIXED: Poll Archive Will Now Show Only Polls That Are Closed

I hope I can released WP-Polls 2.20 in mid May 2007.

I have left 1 more task to do which I have no idea how to design it; To improve the Edit Poll page where it shows a list of IP addresses of the users who voted for the poll. Imagine you got 4000+ people who voted for the poll like the sample poll you see on the right sidebar. It will be a nightmare when it comes to editing the poll (due to the time taken to render the page).

Email This Post Email This Post Print This Post Print This Post

1 Star2 Stars3 Stars4 Stars5 Stars (66 votes, average: 3.86 out of 5)
Loading ... Loading ...

 

Page 1 of 3123»