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 Explained
- SEO WordSpinner Plugin - A Killer SEO Plugin for WordPress
- Weather Forecasts for WordPress - WP Wunderground Plugin
- jQuery validator annoyances
Tag Cloud
Search WP Plugins Google SEO Design Web Design Search Engine Optimization Marketing Javascript Interspire Development eCommerce Code Interspire Shopping Cart Optimization Functions.php WordPress Links SEO Domains Nofollow Website Redesign Google Denver Plugin Shopping Cart Denver SEO WordPress Development WordPress Plugins Blogging CSS WordPress SEO
Category Archives: Code
Simple Vertical Align Plugin for jQuery

Sometimes you may want to vertically align a block item, but the CSS-only vertical aligning methods don’t make you feel clean. Personally, I hate having to style items as a table/table cell to get them to vertically align in Internet Explorer.
jQuery to the rescue. Using a jQuery vertical align snippet as my base code, I modified it to be a jQuery plugin that will allow you to use the function in the jQuery chain.
Posted in Code, jQuery
Tagged CSS, Javascript, jQuery, jQuery Plugin, Plugin, Vertical, Vertical Align
82 Comments
How to View All (or more) Posts at once in WordPress Administration
Here’s the deal: I wanted to be able to temporarily see all the posts at once in the WordPress Administration, so I went into the wp-admin folder, and poked around, and became frustrated: it wasn’t that simple!
Go to /wp-admin/includes/post.php and scroll to line 517. You will see
wp("post_type=post&what_to_show=posts$post_status_q&posts_per_page=15&order=$order&orderby=$orderby");
Change the posts_per_page value to whatever you want it to be. Note: deleting the code will not let you view all posts.
WARNING: I don’t ever like to modify the default WordPress files, because when they get updated, you’ll be screwed. This is a only a temporary fix. It will not last if you update WordPress.
Posted in Code, WordPress
Tagged admin, post.php, Posts, View All, WordPress, WP-Admin, wp-includes
2 Comments
How to turn off captions in WordPress 2.6

Turn off da captions, turn off da funk!
I’ve found that many who found my previous article about removing caption from the All In One SEO Pack are interested in disabling the WordPress 2.6 captions altogether. This is very simple to do.
Futureproof way to disable captions
From Otto:
Add this to your theme’s functions.php file:
add_filter('disable_captions', create_function('$a','return true;'));
[Edited: Updated with final solution from Otto]. Thanks to King Rat and others who’ve contributed to solving this problem.
If you have any questions, revisions, or…comments, leave a comment!
Creating a Real Estate Website in WordPress — Part 2

ArrayIf you find this article helpful, please share it, or Digg it!
In Part 1 of Building a real estate website in WordPress, you learned about a plugin called FreshPost that we used to set up the basic structure of your real estate website. Using this article, you will be able to display a single listing page that has all the content your real estate website will need.
Posted in Code, Design, Tutorial
Tagged Real Estate, Real Estate Web Design, Real Estate Website, Realtor Website, Tutorial, Web Design, WordPress, Wordpress Real Estate
22 Comments
Tableless, accessible, nearly validating osCommerce — Rewriting the beast

osCommerce accessibility stinks
ArrayosCommerce default installation is a huge mess for accessibility. Every piece of code that the platform spits out has endless tables and poorly coded HTML — finding your way through the code is like trying to clear brush.
The simple solution to osCommerce accessibility is to install the Simple Template System and put together a XHTML/CSS’ed out template. That only solves one part of the problem, however, because your wonderful template is going to be wrapping around a whole slew of undesirable code.
Over a year ago, a client of mine wanted an osCommerce website. I wanted to create a masterpiece of accessibility. I tackled osCommerce head-on and re-wrote most of the code that creates the HTML. It was a nightmare, but I created a nearly validating eCommerce website with osCommerce.
The experience was so scarring that I haven’t yet written about it
Nearly every file was affected, so upgrading it would be a nightmare, but it’s truly an effort of love.
KWD presents: a nearly validating, tableless osCommerce website
Posted in Code, Web Design Portfolio
Tagged Cart, CSS, customization, eCommerce, osCommerce, project, Shopping Cart, Web Design, XHTML
9 Comments


Nofollow SEO for your WordPress Functions
Pretty crude idea of nofollow, isn't it?
While working on a recent website, I became frustrated by the lack of nofollow support in many WordPress functions. Make that, most WordPress functions.
There are a few WP functions that I wanted to add nofollow to, so here’s a list and a download link: Read more…