Posts tagged as:

WordPress Plugins

WordPress SEO Plugin

Download the SEO WordSpinner Plugin and test the SEO WordSpinner plugin out.

Refresh this page to experience content spinning in action.

Why use a content spinner?

There are a lot of content spinners out there (I won’t even bother linking to them, most are for spamming, not for SEO). The existing products allow you mass-export articles then submit them across content networks to build links using spammy articles. That is not what this plugin does. This plugin allows you to enhance your site’s SEO by reducing duplicate content.

Google has been improving its handling of duplicate content by implementing use of the canonical tag and updating its algorithm. They don’t punish a site for duplicate content, but having unique content is still better than duplicate content.

Different content in different context

Each of those pages will show the full content or an excerpt (summary) of the content on this page. Each will show a title for this article. The SEO WordSpinner plugin allows you to mix things up so that on each page, users will see different content that means the same thing, therefore avoiding duplicate content issues if done properly.

{ 24 comments }

The Best WordPress SEO Plugin? A combination of two.

All in One SEO Pack (AIOSEO) is the leader in WordPress SEO plugins. It offers great functionality and simple integration into the process of writing a post. AIOSEO is not a perfect plugin, however, because it lacks some very important functionality:

  • Custom category title tags
  • Custom tag title tags
  • Mass editing of page, post, tag and category title tags/slugs

The plugin that has all of the features above (but lacks AIOSEO features) is SEO Title Tag, an imperfect but elegant solution to the list above.  This article shows how to use both plugins and have them combine forces to create a powerful solution for getting custom titles on all your site’s pages.

{ 2 comments }

WordPress Comment Form 404 Errors

Disabling the Cookies for Comments plugin broke the comments form.

On the recommendation of Matt Cutts, I added the Cookies for Comments plugin to this blog, and also added their recommended .htaccess modifications:

RewriteCond %{HTTP_COOKIE} !^.*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.*$
RewriteRule ^wp-comments-post.php - [F,L]

When I realized that Cookies for Comments was slowing down my blog considerably, I disabled the plugin, but did not think to  remove the .htaccess rewrite rule. The remaining .htaccess rules broke the comments on this blog (for two weeks now, could it be!?).

{ 2 comments }

Stop loading WP-Downloads CSS File

If you want to disable the WordPress plugin WP-DownloadManager’s download-css.css file from being loaded, add the following code to your functions.php file:

remove_action('wp_print_styles', 'downloads_stylesheets');

Alternatively, if you would just like to use your own stylesheet, you can add a file named download-css.css to your theme’s directory, and the plugin will automatically load your stylesheet instead.

{ 0 comments }

Improve Gravity Forms – Gravity Forms Addons Plugin

November 5, 2009
Thumbnail image for Improve Gravity Forms – Gravity Forms Addons Plugin

Download Gravity Forms Addons Plugin on WordPress.org

Gravity Forms is Great. Let’s Make it Better.

To view one pane, the other panes close. What a pane in the ass! :-)

To view one pane, the other panes close. What a pane in the ass! :-)

I really enjoy the Gravity Forms plugin. It’s a great form generator seemingly based on making a Wufoo-style experience for a WordPress form plugin.  It’s super-simple to use and set up, and I’ve set up my website request form using Gravity Forms.

Some little things make a big difference

One thing that has frustrated me about the plugin is that when selecting the type of field to add to the form, I had to click a box to show it, like the image to the right.  I knew that it would be a simple thing to fix…so I did.  Enter the Gravity Forms Addon plugin.

Read the full article →

Katz Web Services Featured in iContact’s Email Marketing Monthly

October 29, 2009

iContact EMM

iContact sent out their Email Marketing Monthly October email and featured the Katz Web Services iContact plugin for WordPress. We’re glad they like it, and hope you do too!

Get the iContact Widget for WordPress, and check out iContact for your email marketing.

Read the full article →

Strip Extra ImageScaler Attribute from Plugin-Generated Code

October 2, 2009

I am using the ImageScaler plugin for WordPress on a project, and I like what it does, but it adds a non-standards-compliant attribute to images, such as:

<img class="" src="http://www.example.com/imagescaler/generated-image.jpg" alt="Example" width="258" height="234" imagescaler="http://www.example.com/imagescaler/original-image.jpg" />

To strip imagescaler’s imagescaler attribute, add the following into your functions.php file:

add_filter('the_content', 'strip_imagescaler');
function strip_imagescaler($content) {
	$content = preg_replace('/imagescaler="(.*?)".?/s','', $content);
	return $content;
}
Read the full article →

Rich Text Tag, Category, and Taxonomy Descriptions for WordPress

August 19, 2009

Rich Text Tags Plugin on WordPress.org

Taxonomies, baby!The Rich Text Tags plugin allows you to use the WYSIWYG TinyMCE text editor (the WordPress default editor) while editing Categories, Tags, and taxonomies (custom categorization created by the Yoast Simple Taxonomies plugin).

Read the full article →

Simple Taxonomies Formatting — Improve the Plugin’s Code Output

August 13, 2009

Making the Simple Taxonomies WordPress Plugin Semantic

I’ve been using Joost de Valk’s Simple Taxonomies plugin for a couple of projects, and I’ve been very disappointed by the formatting of the terms output code.

When configuring the plugin, you have the option of choosing “Add terms to the end of posts” or “Add terms to the end of excerpts.” If you do, you get a <div> and a couple of spans. Not very semantic. Also, the code uses an #id, instead of a .class, meaning that if you have more than one post on a page with taxonomies, it no longer validates.

Simple Taxonomies uses terms, so let’s make a list of them!

Here’s a way to reformat the code and prevent overwriting in future plugin updates. We’re going to strip the code and use a definition list instead (<dl>). Definition lists in HTML have a term and description; just as a custom taxonomies creates a taxonomy and its terms.

Read the full article →

Hidden Fields Module for Contact Form 7 (2.x) WordPress Plugin

July 24, 2009

Add hidden fields to a great form creating plugin!

I love the Contact Form 7 plugin, and use it for many of my projects…but one thing it’s missing is the ability to add hidden fields.

Now that Contact Form 7 2.0 has been released, it’s easy to add new types of inputs.  Add hidden tag functionality and “Generate Tag” capability by downloading the file below and replacing/adding the three files included.

Updates:

  • August 5, 2009 – Now updated for 2.0.1
  • August 11, 2009 – Fixed bug with 2.0.1 Version. Thanks, @Courtney
Read the full article →