Contact Form 7 Modules
Contact Form 7 - Add useful modules such as hidden fields and "send all fields" to the Contact Form 7 plugin
Next Milestone 6K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Feb 02, 2017
- Requires WP
- 2.8+
- Tested Up To
- 4.7
- PHP Version
- N/A
- Author
- Katz Web Services, Inc.
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 3.7
- Reviews
- 22
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Contact Form 7 Modules
Activate the plugin
Edit a form in Contact Form 7
Choose "Hidden field" from the Generate Tag dropdown
Follow the instructions on the page
To get the values of WordPress default profile fields, for example, you would use:
user-aim - AOL
user-jabber - Jabber / Google Talk
user-description - Biographical description
How do I send empty values with the `[all-fields]` shortcode?
Add this to your functions.php file: add_filter('wpcf7_send_all_fields_send_empty_fields', '__return_true');
How do I modify the output of the `[all-fields]` shortcode?
wpcf7_send_all_fields_format_before - Before the loop of fields (<dl> for HTML output)
$value string Previous output
$format string Either "html" or "text"
wpcf7_send_all_fields_format_item - Change each item output. Passes four arguments:
$value string Previous output
$k string Field label
$v string Value of the field
$format string Either "html" or "text"
wpcf7_send_all_fields_format_after - After the loop of fields (</dl> for HTML output). Passes two arguments:
$value string Previous output
$format string Either "html" or "text"