WordPress 2.8 Beta 1

WordPress 2.8 Beta 1 has been released. For all the new features, refer to the WordPress 2.8 in Codex. I am going to upgrade this site now.

This site is running the development versions of all my plugins, so it should work with WordPress 2.8. Please let me know if you encounter any bug.

Download: WordPress 2.8 Beta 1

1 Star2 Stars3 Stars4 Stars5 Stars (124 votes, average: 3.56 out of 5)

Poll/Rating AJAX Style Option

I have added 2 minor features to WP-PostRatings and WP-Polls. It is the ability to choose whether to show the loading image with text and the fading in and out of the poll/rating.

Some of you may not like the loading image with text, and now your wish came true, you can choose not to display it under the respective options menu.

For those CSS validating freaks, the opacity CSS value for wp-polls and wp-postratings will not pass CSS validation at W3. Now all you have to do is remove those lines in the respective css file and choose “No” for “Show Fading In And Fading Out Of Polls/Ratings”

One last thing before I end, as you all may know, if polls or ratings is embedded within the post, when viewing feed for the post, the post content might appear unsightly, so now let me gather your feedback to this issue with a poll.

Should I Remove Poll/Rating From Feed If It Is Embedded Within The Post?

  • Yes (39%, 172 Votes)
  • No (32%, 142 Votes)
  • Neutral (28%, 123 Votes)

Total Voters: 437

1 Star2 Stars3 Stars4 Stars5 Stars (70 votes, average: 3.56 out of 5)

My Plugins And WordPress 2.5

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:

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

Replace:

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
1 Star2 Stars3 Stars4 Stars5 Stars (66 votes, average: 3.56 out of 5)