Archive for category WordPress

Best WordPress Plugin for Blackberry, iPhone, iTouch, PDA Display

After viewing our HyperArts blog on my iPhone, I realized that there must be a WordPress plugin to display WordPress sites in a PDA-friendly way.

One site I found that talked about PDA-friendly blogs, FarFromFearless.com, touted the plugin iWPhone Wordpress Plugin and Theme. However, when I tested it out on my iPhone my site displayed absolutely nothing. On the developer’s page, they only claim compatibility to v. 2.5 of WordPress, so apparently they’ve stopped developing this plugin.

After some searching on the WordPress Plugins site, I located the plugin WPtouch, and it works great.

Read the rest of this entry »

1 Comment

Contact Form Plugin for WordPress – cforms

cformsRecently, I wanted to add a contact form to our Social Media Blog & Resource Center which is built on WordPress (v 2.8.4, as of this post). I tested out a number of plugins and finally settled on cforms, and I’m very pleased with it. The latest version is cformsII which the developer, Delicious Days, describes as “ a powerful and feature rich form plugin for Wordpress, offering convenient deployment of multiple Ajax driven contact forms throughout your blog or even on the same page.”

I found this plugin to be quite easy to install and configure, and was impressed with all its features, especially the ability to add CAPTCHA or challenge questions to the form. It’s very easy to add form fields of all kinds and there are many different styling options which are available with a click.

Because the form submission is handled via Ajax, you don’t have to worry about SMTP server settings or anything. It’s really pretty much plug ‘n’ play.

This article will guide you through installation and configuration of cformsII.

Read the rest of this entry »

, ,

13 Comments

Wordpress Blogroll Ordering – My Link Order Patch for 2.8

icon_wordpress1In my post about the plugin “My Link Order” for ordering your blogroll links, I talked about what a great plugin it is. Then Wordpress 2.8 came out and it caused My Link Order not to work. The patch/fix for this is not very intuitive, so I’m laying it out below:

  • Log in to your Wordpress as admin;
  • Click on the “Links” link in the left navigation;
  • Click on “My Link Order” in the list that is displayed;
  • On the “My Link Order” page are the instructions for patching /wp-includes/taxonomy.php so that My Link Order works in Wordpress 2.8.
  • At line 683, after this code:

    elseif ( empty($_orderby) || ‘id’ == $_orderby )
    $orderby = ‘t.term_id’;

    you paste the following code:

    else if ( ‘order’ == $_orderby )
    $orderby = ‘t.term_order’;

and then your blogroll shows up again!

, ,

7 Comments

Wordpress Plugin to Order Your Blogroll Links & Categories

icon_wordpress1

NOTE: “My Link Order” requires a patch to work correctly in Wordpress 2.8. Read this post…

After experiencing a fair amount of frustration trying to order the blogroll links on our Social Media Resources website which is built on Wordpress, I googled around and found My Link Order. This plugin really does the trick, and plays nice with Wordpress v. 2.7.1. But it requires a patch to work in Wordpress v. 2.8.

If your theme uses widgets, they suggest that you replace the standard “Links” widget with the “My Link Order” widget. I found it doesn’t work if your theme uses widgets and you don’t use the “My Link Order” widget.

However, the theme our Social Media blog uses is “Modern,” designed by Ulf Pettersson, which doesn’t use widgets, and the My Link Order developer’s instructions form using their plugin with a non-widget theme aren’t accurate.

You need to do two things:

1) Make “/wp-includes/taxonomy.php” writeable (permissions: 666)

2) In “sidebar.php” replace the PHP code for pulling in the links with this code:
<?php wp_list_bookmarks(‘orderby=order&category_orderby=order’); ?>

Once you have installed the plugin and made the above modifications, ordering your blogroll links and categories is a piece of cake — just drag and drop them into the order in which you wish them to appear.

I find it odd that this feature isn’t built into Wordpress. Without the My Link Order plugin, ordering the links is very limited.

5 Comments