First page of the upgrade archive.

Three Plugins to Update

Posted by Edward Caissie on Oct 3, 2009 with Comments Closed
in News, Remarks
as , , , ,

We have finished a review of the current versions of the last three of our plugins and made minor updates to all of them.

The modifications added a simple version check against the global $wp_version variable that holds the installed WordPress version number. Currently each plugin will only verify the installed version meets the minimum requirements based on functions being used.

There are future possibilities in creating an incentive for users to upgrade to the most current stable version of WordPress. We will be using this “check” method in all our themes and plugins. This verification process has been added to our BNS Login plugin and will be implemented in all of our existing themes with their next updates.

Sample code snippet for (current as of this writing) version checking:

global $wp_version;
$exit_message='This BuyNowShop theme/plugin recommends the use of WordPress 2.8.4, <a href="http://codex.wordpress.org/Upgrading_WordPress">Please Update!';
if (version_compare($wp_version, "2.8.4", "<"))
	{
		exit ($exit_message);
	}

NB: Current version versus minimum version checks will be added at appropriate times.

New Home

Posted by Edward Caissie on Feb 17, 2009 with Comments Closed
in News
as , , , , , , , ,

We have just moved to a more flexible home. This is a sub-domain of one of our longest standing web sites, BuyNowShop.com.
Our former home at WordPress.com was a great place to start, but the lack of Plugin and widget access provided the impetus to move to a self-hosted WordPress blog.
We finally decided to go with [...]

WordPress MU 2.7 Out of the Box

Posted by Edward Caissie on Jan 30, 2009 with Comments Closed
in Reviews
as , , , , , , ,

Just recently Donncha O Caoimh posted on his blog that WordPress Mu (2.7) was available. We have not had a great deal of time lately to stay on the bleeding edge of its development so this announcement was all we were waiting for to push two MU installations updates.
A quick review and some brief observations:
The combined time to [...]

WordPress 2.7 Ready

Posted by dbjb on Dec 2, 2008 with 1 Comment
in Projects
as ,

WordPress 2.7 RC1 is now available which means many things to many people.
We expect to recommend upgrading very soon. We are also looking forward to the new features and functions being added with this version.