Subscribe2 4.6

April 22, 2008

Version 4.6 of the Plugin is now available for download.

Version 4.6 is for WordPress 2.3.x and 2.5.x users only! This version has been tested on WordPress 2.5.

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Subscribe2 4.5

March 29, 2008

Version 4.5 of the Plugin is now available for download. (A little earlier than I’d hoped but WordPress 2.5 is out!)

Version 4.5 is for WordPress 2.3.x and 2.5.x users only! This version has been tested on WordPress 2.3.3 and 2.5RC2.

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Next Version

March 7, 2008

I’m hoping to release a new version of Subscribe2 in the coming week but I would like a few volunteers to test the new version first.

In this latest version I have:

  • Changed the Manage->Subscribers screen to show subscribers in batches of 50
  • Updated the QuickTag button code to work with WordPress 2.5
  • Added an option to not send a notification on a per-post basis

The last of these involves using a custom field of “s2mail” set to “No” (case insensitive).

All of these features need a little testing in a wider audience before being released in the wild so if you are interested and comfortable testing code and debugging please post a comment below.


Subscribe2 4.4

January 16, 2008

Version 4.4 of the Plugin is now available for download.

Version 4.4 is for WordPress 2.3.x users only! This version has been tested on WordPress 2.3.2. This version has been released very close to the previous version due to some critical bugs that have been fixed in the cron handling functions.

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Subscribe2 4.3

January 8, 2008

Version 4.3 of the Plugin is now available for download.

Version 4.3 is for WordPress 2.3.x users only! This version has been tested on WordPress 2.3.1

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Subscribe2 4.2

November 20, 2007

Version 4.2 of the Plugin is now available for download.

Version 4.2 is for WordPress 2.3.x users only! This version has been tested on WordPress 2.3.1

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Subscribe2 4.1

November 2, 2007

Version 4.1 of the Plugin is now available for download.

Version 4.1 is for WordPress 2.3.x users only! This version has been tested on WordPress 2.3.1 and 2.3.0

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Known Issues and Fixes

October 30, 2007

There are currently two known issues with Subscribe2 and it’s features that are being caused by the core WordPress files. If you feel comfortable editing PHP code here are the fixes:

Issue 1: Upon activating the plugin you may get an error regarding openbase_dir

Issue 1 has been fixed by an update to the WordPress core files.

To resolve this issue locate the file install-helper.php in wp-admin. On line 2 you’ll find the following
require_once ('../wp-config.php');

Change this to:
require_once (dirname(dirname(__FILE__)).'/wp-config.php');

Issue 2: When a Subscriber confirms a subscribption the webpage shown will replace the names of all your pages with “Subscription Confirmed”

To resolve this issue you have two options:

Option 1: Comment out line 2183 in Subscribe2.php.

Change it from:
add_filter('the_title', array(&$this, 'title_filter'));

To:
//add_filter('the_title', array(&$this, 'title_filter'));

Option 2: Locate classes.php in wp-includes and edit line 521.

Change it from:
$output .= $indent . '<li class="' . $css_class . '"><a>ID) . '" title="' . attribute_escape(apply_filters('the_title', $page->post_title)) . '">' . apply_filters('the_title', $page->post_title) . '</a>';

To:
$output .= $indent . '<li class="' . $css_class . '"><a>ID) . '" title="' . attribute_escape($page->post_title) . '">' . $page->post_title . '</a>';


Subscribe2 4.0

October 4, 2007

Version 4.0 of the Plugin is now available for download.

Version 4.0 is for WordPress 2.3.x users only! This version has been tested on WordPress 2.3.

Users of WordPress 2.0.x should download Version 2.22 of Subscribe2. Users of WordPress 2.1.x and 2.2.x should download Version 3.8.

Read the rest of this entry »


Bleeding Edge!

September 24, 2007

For those of you who like to be at the bleeding edge of WordPress development I guess now is an exciting time with the imminent release of WordPress 2.3.

If you also use Subscribe2 you’ll need to update the plugin to Version 4.0. I’ll post a more complete release in a few days tme, in the meantime consider this my release candidate for the plugin. Post any problems below.