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 }

Gravity Forms Plugin for WordPress

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 rest of the article »

{ 6 comments }

KWS has a new home on Facebook

The transition from Katz Web Design to Katz Web Services, Inc. is complete with the launch of the Katz Web Services Facebook page.  Become a fan, ask questions on the discussion board, and be recognized by others for being so avant-garde!

I love KWS fans – share your love and become a fan today!

{ 0 comments }

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.

{ 0 comments }

Un-Ban Yourself from WHMCS Administration

October 28, 2009
Thumbnail image for Un-Ban Yourself from WHMCS Administration

Is your IP banned from your own WHMCS?
Who can remember all their passwords all the time? I have a password manager, and I still don’t get it right.  I use the WHMCS software to manage client hosting and such, and so sometimes I get locked out of my own system because I’ve tried too many times to [...]

Read the full article →

Add Canonical Tags to Shopp Plugin for SEO

October 21, 2009
Thumbnail image for Add Canonical Tags to Shopp Plugin for SEO

I am building a store using the Shopp plugin, and I noticed that there are possibilities for duplicate content issues:

A product can be accessed both by /shop/{productID} and /shop/{product-slug}
A tag can be accessed using /shop/?shopp_tag={tag-uri} and /shop/tag/{tag-slug}
A tag can be accessed using /shop/?shopp_category={category-id} and /shop/{category-uri}

Should Google somehow find it’s way into indexing these pages, the value of the identical [...]

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 →

Add a Store Catalog XML Sitemap to the Shopp Plugin

October 1, 2009

The Shopp default RSS/XML/Google Base solution was not enough.

I needed to have a Google Base feed that featured all the store products. For some reason, the recommended process wasn’t working for me. It was either showing only recent products, or it wasn’t working at all.  Here’s how I fixed it:

Read the full article →

Google Place Pages – Google Finally Shows its Answer to Yelp.com

September 25, 2009
Thumbnail image for Google Place Pages – Google Finally Shows its Answer to Yelp.com

Google finally goes “local directory” in Place Pages
Google had been lagging behind sites like Yelp.com in providing a place to find information about businesses. If you did a local search, you would have a “More info…” link that would expand your search result inside the map and have tabs that were badly organized. Not anymore. Enter [...]

Read the full article →

Google Chrome Frame Plugin for WordPress

September 23, 2009

Google Chrome Frame — the Beginning of the End of IE Tyranny?
Google just introduced a new tactic in the browser wars, and this one’s juicy. It’s called Google Chrome Frame.
What it does is it makes Internet Explorer render websites using Google Chrome in a frame. That means that IE can have HTML 5 compatibility and all the [...]

Read the full article →