About Katz Web Services
Katz Web Services is a web development company operated by Zack Katz.
-
Plugin Support Topics
Popular Posts
- Simple Vertical Align Plugin for jQuery
- How to Create a Custom RSS Feed in WordPress in 12 Lines of Code
- Contact Form 7 Modules - A Plugin
- iContact Widget for WordPress
- Gravity Forms Shortcode - A Detailed Explanation
- Kick SEO Ass with SEO WordSpinner Plugin for WordPress
- Weather Forecasts for WordPress - WP Wunderground Plugin
- jQuery validator annoyances
Tag Cloud
Links Google WordPress SEO Shopping Cart Code Blogging WP Plugins Optimization WordPress Marketing eCommerce Website Redesign Denver SEO Interspire Development Google SEO Javascript Functions.php Denver Interspire Shopping Cart WordPress Development Domains Nofollow CSS Plugin Search Engine Optimization Web Design SEO Design WordPress Plugins Search
Tag Archives: WordPress Plugins
Interspire & BigCommerce WordPress Plugin
Integrate Interspire or BigCommerce with your WordPress website
You want to spend your time writing the best content, not hunting for the link for the product you’re blogging about. This plugin is simple to set up, and powerful. If you use WordPress and Interspire or BigCommerce, it’s a must have.
For for information, check out the plugin information & download page on WordPress.org
WordPress Debt Calculator
Download the plugin from WordPress.org
Add a debt calculator to your WordPress blog
Do you have a financial blog or a blog about debt, money management, or household spending? Add a free debt calculator to your blog with no coding required.
- Updating the style: You can update the form’s style by editing the plugin’s
debt.cssfile - You can add the calculator to your website’s sidebar by using the shortcode in a text widget
- Use in combination with the Show Content Only plugin as a pop-up window
Posted in Plugins, WordPress
Tagged Debt, Debt Calculator, Free Debt Calculator, WordPress, WordPress Development, WordPress Plugins
13 Comments
Add Custom Titles for Tags and Categories in WordPress
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
titletags - Custom tag
titletags - Mass editing of page, post, tag and category
titletags/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.
How to Prevent Loading WP-DownloadManager’s 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.
Posted in Code, QuickTip, WordPress
Tagged CSS, load time, Plugin, Plugins, WordPress Plugins, WP Plugins, WP-DownloadManager
Leave a comment
Improve Gravity Forms – Gravity Forms Addons Plugin

Download Gravity Forms Addons Plugin on WordPress.org
Gravity Forms + Directory Capabilities
Since Gravity Forms came out, it’s been transforming how WordPress can be used. It makes a contact form more than a contact form. It makes a contact form the basis for anything you can imagine.
The Gravity Forms Addons plugin has added Directory capability to Gravity Forms.
The directory shortcode
You can add a directory for any form using the directory shortcode. When you add the plugin, you’ll see a new button to the right of the Gravity Forms “Add Gravity Form” button. This pop-up has lots of configuration options. Click the “Show advanced settings” link for tons of configuration options.
Gravity Forms is Great. Let’s Make it Better.

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.
Strip Extra ImageScaler Attribute from Plugin-Generated Code
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;
}
Posted in WordPress
Tagged add_filter, Code, images, ImageScaler, Plugin, preg_replace, WordPress, WordPress Development, WordPress Plugins
Leave a comment
Mad Mimi, Meet WordPress

WordPress Comment Form 404 Error – Now Fixed!
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
.htaccessrewrite rule. The remaining.htaccessrules broke the comments on this blog (for two weeks now, could it be!?). Read more…