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
- Kick SEO Ass with SEO WordSpinner Plugin for WordPress
- Weather Forecasts for WordPress - WP Wunderground Plugin
- jQuery validator annoyances
Tag Cloud
WordPress Search Engine Optimization SEO Code WordPress Development Nofollow Google SEO Optimization Denver Links Shopping Cart CSS Domains Google WordPress SEO Marketing eCommerce WP Plugins Javascript Interspire Shopping Cart Design Functions.php Blogging Website Redesign Interspire Development Search Web Design Denver SEO Plugin WordPress Plugins
Tag Archives: WordPress
The SEO Denver Blog is Now Self-Hosted

After a year of hosting the SEODenver.com website on WordPress.com servers, it’s time to finally move on.
WordPress hosting was a good way to get the SEO Denver Blog up quicky and without much forethought…but WordPress.com hosting was always temporary, and finally, the site has moved!
Posted in KWS
Tagged Denver SEO, Hosting, SEO Denver, SEODenver.com, Web Hosting, WordPress, WordPress.com
Leave a comment
Incorporate WordPress with Interspire Shopping Cart
I’m going to elaborate on this further (and about Interspire in general), but for those of you who want to make WordPress functions available throughout your shopping cart, here’s how:
Before the closing (see Update below).?> in the init.php file, add the following code:
require(realpath(ISC_BASE_PATH).'/blog-directory/wp-blog-header.php');, where /blog-directory/ is your WP installation. If you installed it in the root directory, then you’d simply need require(realpath(ISC_BASE_PATH).'/wp-blog-header.php');
Update: There is a bug that happens when the include is placed at the bottom of init.php; instead, add require(realpath(ISC_BASE_PATH).'/wp-blog-header.php'); on the line below require_once(dirname(__FILE__).'/lib/init.php'); (line 3).
Voila! That simple. Any questions?
Posted in Interspire, WordPress
Tagged Interspire Shopping Cart, Shopping Cart, WordPress, WordPress Integration
19 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



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…