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
- WordPress Content Spinner Plugin - SEO WordSpinner
- Weather Forecasts for WordPress - WP Wunderground Plugin
- jQuery validator annoyances
Tag Cloud
Domains WordPress Shopping Cart Interspire Shopping Cart Website Redesign SEO Code Plugin WordPress Plugins Interspire Development Denver WordPress SEO WP Plugins Search WordPress Development Web Design Marketing Optimization Search Engine Optimization Blogging Javascript Google SEO CSS Links Design Functions.php Google Nofollow eCommerce Denver SEO
Tag Archives: shortcode
Gravity Forms Shortcode – A Detailed Explanation
This post is about Gravity Forms, a WordPress contact form plugin.
What are shortcodes?
Think of shortcodes as a placeholder for where other content will be displayed: instead of “Insert a Gravity Forms form here,” we use the gravityform shortcode. Learn more about shortcodes on WordPress.org.
The Gravity Forms shortcode has five pieces:
[gravityform id=# name=TEXT title=boolean description=boolean ajax=boolean]
id(required) – The ID of the form, as displayed on the Gravity Forms Edit Forms page in the Id columnname(required) - The name of the form.title– Show the title to users? Default is true; set to “false” to disabledescription– Show the form’s description to users? Default is true; set to “false” to disable.ajax– Submit the form without refreshing? Default is false; set to “true” to enable.
Gravity Forms Shortcode Examples:
[gravityform id=1 name=Example Form title=false description=false ajax=true]
Will result in Form #1 being displayed without a title or description, with no-refresh entry submission.
Posted in Tutorial, WordPress
Tagged Gravity Forms, Gravity Forms Ajax, Gravity Forms Plugin, shortcode, WordPress Shortcode
6 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!