Version Description
Popover forms will be added in September 2010.
Download this release
Release Info
Developer | tlovett1 |
Plugin | Custom Contact Forms |
Version | 3.1.2 |
Comparing to | |
See all releases |
Code changes from version 3.1.1 to 3.1.2
- custom-contact-forms.php +2 -2
- readme.txt +4 -2
custom-contact-forms.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Custom Contact Forms
|
4 |
Plugin URI: http://taylorlovett.com/wordpress-plugins
|
5 |
Description: Guaranteed to be 1000X more customizable and intuitive than Fast Secure Contact Forms or Contact Form 7. Customize every aspect of your forms without any knowledge of CSS: borders, padding, sizes, colors. Ton's of great features. Required fields, captchas, tooltip popovers, unlimited fields/forms/form styles, use a custom thank you page or built-in popover with a custom success message set for each form. <a href="options-general.php?page=custom-contact-forms">Settings</a>
|
6 |
-
Version: 3.1.
|
7 |
Author: Taylor Lovett
|
8 |
Author URI: http://www.taylorlovett.com
|
9 |
*/
|
@@ -1168,7 +1168,7 @@ the field names you want required by commas. Remember to use underscores instead
|
|
1168 |
foreach ($_POST as $key => $value) {
|
1169 |
$_SESSION[fields][$key] = $value;
|
1170 |
$field = parent::selectField('', $key);
|
1171 |
-
if (!array_key_exists($key, $this->fixed_fields))
|
1172 |
$body .= $field->field_label . ': ' . $value . "\n";
|
1173 |
if (in_array($key, $checks)) {
|
1174 |
$checks_key = array_search($key, $checks);
|
3 |
Plugin Name: Custom Contact Forms
|
4 |
Plugin URI: http://taylorlovett.com/wordpress-plugins
|
5 |
Description: Guaranteed to be 1000X more customizable and intuitive than Fast Secure Contact Forms or Contact Form 7. Customize every aspect of your forms without any knowledge of CSS: borders, padding, sizes, colors. Ton's of great features. Required fields, captchas, tooltip popovers, unlimited fields/forms/form styles, use a custom thank you page or built-in popover with a custom success message set for each form. <a href="options-general.php?page=custom-contact-forms">Settings</a>
|
6 |
+
Version: 3.1.2
|
7 |
Author: Taylor Lovett
|
8 |
Author URI: http://www.taylorlovett.com
|
9 |
*/
|
1168 |
foreach ($_POST as $key => $value) {
|
1169 |
$_SESSION[fields][$key] = $value;
|
1170 |
$field = parent::selectField('', $key);
|
1171 |
+
if (!array_key_exists($key, $this->fixed_fields) or $key == 'fixedEmail')
|
1172 |
$body .= $field->field_label . ': ' . $value . "\n";
|
1173 |
if (in_array($key, $checks)) {
|
1174 |
$checks_key = array_search($key, $checks);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.taylorlovett.com
|
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
|
5 |
Requires at least: 2.7.1
|
6 |
Tested up to: 3.1
|
7 |
-
Stable tag: 3.1.
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
@@ -131,4 +131,6 @@ Visit http://www.taylorlovett.com/wordpress-plugins for screenshots.
|
|
131 |
* custom-contact-forms-db.php - Success message title added
|
132 |
* custom-contact-forms.css - Form styles rewritten
|
133 |
= 3.1.1 =
|
134 |
-
* custom-contact-forms-db.php - Style manager bug fixed
|
|
|
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
|
5 |
Requires at least: 2.7.1
|
6 |
Tested up to: 3.1
|
7 |
+
Stable tag: 3.1.2
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
131 |
* custom-contact-forms-db.php - Success message title added
|
132 |
* custom-contact-forms.css - Form styles rewritten
|
133 |
= 3.1.1 =
|
134 |
+
* custom-contact-forms-db.php - Style manager bug fixed
|
135 |
+
= 3.1.2 =
|
136 |
+
* custom-contact-forms-db.php - Fixed email field bug fixed
|