Version Description
- css/custom-contact-forms-admin.css - Minor display changes
- js/custom-contact-forms.js - JQuery conflict issue fixed
Download this release
Release Info
Developer | tlovett1 |
Plugin | Custom Contact Forms |
Version | 4.0.9.2 |
Comparing to | |
See all releases |
Code changes from version 4.0.9.1 to 4.0.9.2
- css/custom-contact-forms-admin.css +2 -0
- custom-contact-forms-front.php +4 -0
- custom-contact-forms.php +1 -1
- images/Thumbs.db +0 -0
- js/custom-contact-forms.js +12 -12
- readme.txt +7 -4
css/custom-contact-forms-admin.css
CHANGED
@@ -49,6 +49,8 @@
|
|
49 |
line-height:normal;
|
50 |
}
|
51 |
|
|
|
|
|
52 |
#customcontactforms-admin form.blog-horizontal-form span { font-weight:bold; padding-right:4px; }
|
53 |
|
54 |
|
49 |
line-height:normal;
|
50 |
}
|
51 |
|
52 |
+
#customcontactforms-admin form.blog-horizontal-form input[type=text] { width:100px; }
|
53 |
+
|
54 |
#customcontactforms-admin form.blog-horizontal-form span { font-weight:bold; padding-right:4px; }
|
55 |
|
56 |
|
custom-contact-forms-front.php
CHANGED
@@ -44,6 +44,10 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
44 |
return $this->form_errors[$key];
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
47 |
function getAllFormErrors() {
|
48 |
return $this->form_errors;
|
49 |
}
|
44 |
return $this->form_errors[$key];
|
45 |
}
|
46 |
|
47 |
+
function emptyFormErrors() {
|
48 |
+
$this->form_errors = array();
|
49 |
+
}
|
50 |
+
|
51 |
function getAllFormErrors() {
|
52 |
return $this->form_errors;
|
53 |
}
|
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, form submissions saved to database, captchas, tooltip popovers, unlimited fields/forms/form styles, import/export, use a custom thank you page or built-in popover with a custom success message set for each form.
|
6 |
-
Version: 4.0.9.
|
7 |
Author: Taylor Lovett
|
8 |
Author URI: http://www.taylorlovett.com
|
9 |
*/
|
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, form submissions saved to database, captchas, tooltip popovers, unlimited fields/forms/form styles, import/export, use a custom thank you page or built-in popover with a custom success message set for each form.
|
6 |
+
Version: 4.0.9.2
|
7 |
Author: Taylor Lovett
|
8 |
Author URI: http://www.taylorlovett.com
|
9 |
*/
|
images/Thumbs.db
ADDED
Binary file
|
js/custom-contact-forms.js
CHANGED
@@ -1,24 +1,24 @@
|
|
1 |
// Custom Contact Forms plugin javascript
|
2 |
|
3 |
-
jQuery(document).ready(function(){
|
4 |
-
|
5 |
.addClass('ccf-popover-close')
|
6 |
.html('[close]')
|
7 |
.prependTo('.ccf-popover');
|
8 |
-
|
9 |
-
|
10 |
var sel = ".ccf-popover" + cid;
|
11 |
-
|
12 |
|
13 |
});
|
14 |
-
|
15 |
-
|
16 |
});
|
17 |
-
|
18 |
|
19 |
});
|
20 |
|
21 |
-
|
22 |
position: "center right",
|
23 |
offset: [-2, 10],
|
24 |
effect: "fade",
|
@@ -27,9 +27,9 @@ jQuery(document).ready(function(){
|
|
27 |
|
28 |
});
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
});
|
34 |
|
35 |
});
|
1 |
// Custom Contact Forms plugin javascript
|
2 |
|
3 |
+
jQuery(document).ready(function ($) {
|
4 |
+
$('<a></a>')
|
5 |
.addClass('ccf-popover-close')
|
6 |
.html('[close]')
|
7 |
.prependTo('.ccf-popover');
|
8 |
+
$('.ccf-popover').css({'padding' : '10px 14px 10px 10px'});
|
9 |
+
$("a#in").click(function(){
|
10 |
var sel = ".ccf-popover" + cid;
|
11 |
+
$(".ccf-popover1").fadeIn();
|
12 |
|
13 |
});
|
14 |
+
$(".ccf-popover-close").click(function(){
|
15 |
+
$(".ccf-popover").hide();
|
16 |
});
|
17 |
+
$('.show-field-instructions').click(function() {
|
18 |
|
19 |
});
|
20 |
|
21 |
+
$(".ccf-tooltip-field").tooltip({
|
22 |
position: "center right",
|
23 |
offset: [-2, 10],
|
24 |
effect: "fade",
|
27 |
|
28 |
});
|
29 |
|
30 |
+
$("#ccf-form-success").delay(500).fadeIn('slow');
|
31 |
+
$("#ccf-form-success .close").click(function() {
|
32 |
+
$("#ccf-form-success").fadeOut();
|
33 |
});
|
34 |
|
35 |
});
|
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.8.1
|
6 |
Tested up to: 3.0.4
|
7 |
-
Stable tag: 4.0.9.
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
@@ -79,10 +79,9 @@ Restrictions/Requirements:
|
|
79 |
Custom Contact Forms is an extremely intuitive plugin allowing you to create any type of contact form you can image. CCF is very user friendly but with possibilities comes complexity. __It is recommend that you click the button in the instructions section of the plugin to add default fields, field options, and forms.__ The default content will help you get a feel for the amazing things you can accomplish with this plugin. __It is also recommended you click the "Show Plugin Usage Popover"__ in the instruction area of the admin page to read in detail about all parts of the plugin.
|
80 |
|
81 |
== Support ==
|
82 |
-
For questions, feature requests, and support concerning the Custom Contact Forms plugin, please
|
83 |
-
|
84 |
|
85 |
-
I respond to emails same-day!
|
86 |
|
87 |
== Frequently Asked Questions ==
|
88 |
|
@@ -121,6 +120,10 @@ Visit http://www.taylorlovett.com/wordpress-plugins for screenshots. Right now a
|
|
121 |
|
122 |
== Changelog ==
|
123 |
|
|
|
|
|
|
|
|
|
124 |
= 4.0.9.1 =
|
125 |
* custom-contact-forms-admin.php - Minor display changes
|
126 |
* css/custom-contact-forms-admin.css - Minor display changes to field options
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
|
5 |
Requires at least: 2.8.1
|
6 |
Tested up to: 3.0.4
|
7 |
+
Stable tag: 4.0.9.2
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
79 |
Custom Contact Forms is an extremely intuitive plugin allowing you to create any type of contact form you can image. CCF is very user friendly but with possibilities comes complexity. __It is recommend that you click the button in the instructions section of the plugin to add default fields, field options, and forms.__ The default content will help you get a feel for the amazing things you can accomplish with this plugin. __It is also recommended you click the "Show Plugin Usage Popover"__ in the instruction area of the admin page to read in detail about all parts of the plugin.
|
80 |
|
81 |
== Support ==
|
82 |
+
For questions, feature requests, and support concerning the Custom Contact Forms plugin, please visit:
|
83 |
+
http://www.taylorlovett.com/wordpress-plugins
|
84 |
|
|
|
85 |
|
86 |
== Frequently Asked Questions ==
|
87 |
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 4.0.9.2 =
|
124 |
+
* css/custom-contact-forms-admin.css - Minor display changes
|
125 |
+
* js/custom-contact-forms.js - JQuery conflict issue fixed
|
126 |
+
|
127 |
= 4.0.9.1 =
|
128 |
* custom-contact-forms-admin.php - Minor display changes
|
129 |
* css/custom-contact-forms-admin.css - Minor display changes to field options
|