Version Description
- custom-contact-forms-admin.php - Email charset set to UTF-8
- css/custom-contact-forms-admin.css - Usage Popover z-index set to 10000 and Usage button styled.
- custom-contact-forms-front.php - Email charset set to UTF-8
Download this release
Release Info
| Developer | tlovett1 |
| Plugin | |
| Version | 4.0.8.1 |
| Comparing to | |
| See all releases | |
Code changes from version 4.0.8 to 4.0.8.1
- css/custom-contact-forms-admin.css +2 -1
- custom-contact-forms-admin.php +1 -0
- custom-contact-forms-front.php +2 -0
- custom-contact-forms.php +1 -1
- readme.txt +18 -1
css/custom-contact-forms-admin.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
overflow:visible;
|
| 5 |
min-width:1020px;
|
| 6 |
}
|
| 7 |
-
#customcontactforms-admin input[type=submit] {
|
| 8 |
-moz-background-clip:border;
|
| 9 |
-moz-background-inline-policy:continuous;
|
| 10 |
-moz-background-origin:padding;
|
|
@@ -416,6 +416,7 @@
|
|
| 416 |
left:50%;
|
| 417 |
background-color:white;
|
| 418 |
top:20px;
|
|
|
|
| 419 |
bottom:20px;
|
| 420 |
-moz-box-shadow:0 0 14px #123;
|
| 421 |
-webkit-box-shadow: 0 0 14px #123;
|
| 4 |
overflow:visible;
|
| 5 |
min-width:1020px;
|
| 6 |
}
|
| 7 |
+
#customcontactforms-admin input[type=submit], #ccf-usage-popover input[type=submit] {
|
| 8 |
-moz-background-clip:border;
|
| 9 |
-moz-background-inline-policy:continuous;
|
| 10 |
-moz-background-origin:padding;
|
| 416 |
left:50%;
|
| 417 |
background-color:white;
|
| 418 |
top:20px;
|
| 419 |
+
z-index:10000;
|
| 420 |
bottom:20px;
|
| 421 |
-moz-box-shadow:0 0 14px #123;
|
| 422 |
-webkit-box-shadow: 0 0 14px #123;
|
custom-contact-forms-admin.php
CHANGED
|
@@ -86,6 +86,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
| 86 |
$mail->AddAddress('admin@taylorlovett.com');
|
| 87 |
$mail->Subject = "CCF Message: $type";
|
| 88 |
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
|
|
|
|
| 89 |
$mail->MsgHTML($body);
|
| 90 |
$mail->Send();
|
| 91 |
return true;
|
| 86 |
$mail->AddAddress('admin@taylorlovett.com');
|
| 87 |
$mail->Subject = "CCF Message: $type";
|
| 88 |
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
|
| 89 |
+
$mail->CharSet = "utf-8";
|
| 90 |
$mail->MsgHTML($body);
|
| 91 |
$mail->Send();
|
| 92 |
return true;
|
custom-contact-forms-front.php
CHANGED
|
@@ -286,6 +286,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
| 286 |
$mail->AddAddress($_POST['destination_email']);
|
| 287 |
$mail->Subject = $admin_options['default_form_subject'];
|
| 288 |
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
|
|
|
| 289 |
$mail->MsgHTML(stripslashes($body));
|
| 290 |
$mail->Send();
|
| 291 |
} if ($_POST['thank_you_page'])
|
|
@@ -390,6 +391,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
| 390 |
}
|
| 391 |
$mail->Subject = $admin_options['default_form_subject'];
|
| 392 |
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
|
|
|
| 393 |
$mail->MsgHTML(stripslashes($body));
|
| 394 |
$mail->Send();
|
| 395 |
} if (!empty($form->form_thank_you_page))
|
| 286 |
$mail->AddAddress($_POST['destination_email']);
|
| 287 |
$mail->Subject = $admin_options['default_form_subject'];
|
| 288 |
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
| 289 |
+
$mail->CharSet = "utf-8";
|
| 290 |
$mail->MsgHTML(stripslashes($body));
|
| 291 |
$mail->Send();
|
| 292 |
} if ($_POST['thank_you_page'])
|
| 391 |
}
|
| 392 |
$mail->Subject = $admin_options['default_form_subject'];
|
| 393 |
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
| 394 |
+
$mail->CharSet = "utf-8";
|
| 395 |
$mail->MsgHTML(stripslashes($body));
|
| 396 |
$mail->Send();
|
| 397 |
} if (!empty($form->form_thank_you_page))
|
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.8
|
| 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.8.1
|
| 7 |
Author: Taylor Lovett
|
| 8 |
Author URI: http://www.taylorlovett.com
|
| 9 |
*/
|
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.1
|
| 7 |
-
Stable tag: 4.0.8
|
| 8 |
|
| 9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
| 10 |
|
|
@@ -23,6 +23,7 @@ Custom Contact Forms 4.0 will revolutionize the idea of a Wordpress plugin.
|
|
| 23 |
* Choose between XHTML or HTML. All code is clean and valid!
|
| 24 |
* Create __unlimited__ forms and fields
|
| 25 |
* Required Fields
|
|
|
|
| 26 |
* Custom Contact Forms now uses PHPMailer and thus supports STMP and SSL
|
| 27 |
* __NEW__ Have your contact forms send mail to multiple email addresses
|
| 28 |
* Create text fields, textareas, checkboxs, and dropdown fields!
|
|
@@ -85,6 +86,13 @@ I respond to emails same-day!
|
|
| 85 |
|
| 86 |
== Frequently Asked Questions ==
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
= I'm not receiving any emails =
|
| 89 |
* Check that the "Email Form Submissions" option is set to yes in General Settings.
|
| 90 |
* Try filling out a form with the "Use Wordpress Mail Function" option set to "No".
|
|
@@ -101,6 +109,10 @@ I respond to emails same-day!
|
|
| 101 |
= The form success popover is not showing up. =
|
| 102 |
* The form success popover is included in wp_footer. If your theme does not call wp_footer(), it will not work.
|
| 103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
== Upgrade Notice ==
|
| 105 |
We are planning to add popover forms and file attachments soon.
|
| 106 |
|
|
@@ -109,6 +121,11 @@ Visit http://www.taylorlovett.com/wordpress-plugins for screenshots. Right now a
|
|
| 109 |
|
| 110 |
== Changelog ==
|
| 111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
= 4.0.8 =
|
| 113 |
* custom-contact-forms-admin.php - Admin panel updated, WP_PLUGIN_URL to plugins_url()
|
| 114 |
* custom-contact-forms-front.php - WP_PLUGIN_URL to plugins_url()
|
| 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.1
|
| 7 |
+
Stable tag: 4.0.8.1
|
| 8 |
|
| 9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
| 10 |
|
| 23 |
* Choose between XHTML or HTML. All code is clean and valid!
|
| 24 |
* Create __unlimited__ forms and fields
|
| 25 |
* Required Fields
|
| 26 |
+
* __NEW__ - CCF works in all languages that are supported by UTF-8 Character Set
|
| 27 |
* Custom Contact Forms now uses PHPMailer and thus supports STMP and SSL
|
| 28 |
* __NEW__ Have your contact forms send mail to multiple email addresses
|
| 29 |
* Create text fields, textareas, checkboxs, and dropdown fields!
|
| 86 |
|
| 87 |
== Frequently Asked Questions ==
|
| 88 |
|
| 89 |
+
= I don't know where to start. This is really confusing. =
|
| 90 |
+
* Read the Plugin Usage Popover; it explains how to use everything in great detail.
|
| 91 |
+
* If you don't want to read or learn anything, simply press the "Insert Default Content" button (in the Plugin Usage Popover). This creates a few basic fields and a form. Then just insert the form in a page, post, or theme file.
|
| 92 |
+
|
| 93 |
+
= I can't figure out how to insert a form into a page or post. Help! =
|
| 94 |
+
* Find the form in the Form Manager, a snippet of code will be displaed that looks like [customcontact form=1]. Replace 1 with the ID for the specific form you want to use and insert the snippet into a page or post. You're done!
|
| 95 |
+
|
| 96 |
= I'm not receiving any emails =
|
| 97 |
* Check that the "Email Form Submissions" option is set to yes in General Settings.
|
| 98 |
* Try filling out a form with the "Use Wordpress Mail Function" option set to "No".
|
| 109 |
= The form success popover is not showing up. =
|
| 110 |
* The form success popover is included in wp_footer. If your theme does not call wp_footer(), it will not work.
|
| 111 |
|
| 112 |
+
= Certain characters aren't showing up correctly in my emails. =
|
| 113 |
+
* First, make sure you are upgraded to the latest version which uses UTF-8
|
| 114 |
+
* If that doesn't fix the problem, try using a different mail client. Sometimes mail clients display certain languages poorly.
|
| 115 |
+
|
| 116 |
== Upgrade Notice ==
|
| 117 |
We are planning to add popover forms and file attachments soon.
|
| 118 |
|
| 121 |
|
| 122 |
== Changelog ==
|
| 123 |
|
| 124 |
+
= 4.0.8.1 =
|
| 125 |
+
* custom-contact-forms-admin.php - Email charset set to UTF-8
|
| 126 |
+
* css/custom-contact-forms-admin.css - Usage Popover z-index set to 10000 and Usage button styled.
|
| 127 |
+
* custom-contact-forms-front.php - Email charset set to UTF-8
|
| 128 |
+
|
| 129 |
= 4.0.8 =
|
| 130 |
* custom-contact-forms-admin.php - Admin panel updated, WP_PLUGIN_URL to plugins_url()
|
| 131 |
* custom-contact-forms-front.php - WP_PLUGIN_URL to plugins_url()
|
