Browsing the blog archivesfor the day Thursday, July 29th, 2010.

WordPress 3.0.1 is released

Internet Marketing

WordPress 3.0.1 is out.

With a heap of bug fixes… and nothing particularly major (it’s all good!) this will doubtless be a pretty stable and long lasting release!

Post to Twitter Tweet This Post

No Comments

Daily Tip: Manually Activate BuddyPress Users Who Have Not Activated Their Accounts

Internet Marketing

There’s a new BuddyPress plugin available that will allow you to manually activate users through your dashboard who have not activated themselves. Sometimes this happens because the activation link goes to the user’s spam folder or an email address that they don’t normally use. Add this to your site by installing the WP Activate Users plugin. You’ll have a new menu in your admin area that will allow you to activate the users directly through the dashboard without having to touch the database. This is a great option if you don’t want to disable the activation email but are worried about some of the emails not arriving to the user’s inbox.

Post to Twitter Tweet This Post

No Comments

How to Use Custom Post Types to Automatically Display Google Code Project Commits on Your WordPress Site

Internet Marketing

This is a tutorial for developers who host projects with Google Code and blog with WordPress. Suppose you could create an automatically-updating archive of your SVN activity for a project you’re working on? The Google Code Commit Tracking plugin for WordPress 3.0 allows you to do just that!

Whenever you make an SVN commit on a Google Code project, you can instruct Google to send a notice to someplace else. This plugin enables WordPress to receive those notices and output them as an SVN Activity custom post type. You’ll be able to view them in a list under the SVN Activity custom post menu in your dashboard:

How to Link Your Google Code Project’s SVN Activity to Your WordPress Site

If you’re setting up your Google Code account for the first time, make sure to select SVN for your repository type if you plan to use this plugin.

  1. After installing Google Code Commit Tracking on your WordPress site, go to your Google Code account and copy the Post Commit Authentication Key from the Administer > Source.
  2. Paste into the Settings > Google Code options page.
  3. Copy the Post-Commit URL on the Config page into the Google Code Post-Commit URL field on Administer > Source.
  4. Then you can create a custom page template for the page where you want to display the updates and query the SVN post types using something like this:
    <?php query_posts( 'post_type=svn'); ?>

Now you have a page that will update automatically every time you commit, without you having to do a thing. This is especially useful if you are collaborating on a project with other developers or have a number of people interested in your project who don’t use Google Code. Importing your SVN activity as custom post types lets your site’s visitors to interact with your project by commenting on the updates and following via subscription. Keep everyone up to date with your project directly through your WordPress site!

Post to Twitter Tweet This Post

No Comments