Version Description
- Compatible with WordPress 5.3
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.96 |
Comparing to | |
See all releases |
Code changes from version 1.2.95 to 1.2.96
- README.txt +6 -3
- form-to-email.php +1 -1
- js/block.js +2 -2
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: codepeople
|
|
3 |
Donate link: https://form2email.dwbooster.com/download
|
4 |
Tags: contact form,contact,email,contact form database,form,contact form excel,form to email,form to database,contact form builder,form to csv,form to excel,contact form csv
|
5 |
Requires at least: 3.0.5
|
6 |
-
Tested up to: 5.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -456,6 +456,9 @@ When you click a field already added into the contact form builder area, you can
|
|
456 |
|
457 |
== Changelog ==
|
458 |
|
|
|
|
|
|
|
459 |
= 1.2.95 =
|
460 |
* Code improvements
|
461 |
|
@@ -1045,5 +1048,5 @@ When you click a field already added into the contact form builder area, you can
|
|
1045 |
|
1046 |
== Upgrade Notice ==
|
1047 |
|
1048 |
-
= 1.2.
|
1049 |
-
*
|
3 |
Donate link: https://form2email.dwbooster.com/download
|
4 |
Tags: contact form,contact,email,contact form database,form,contact form excel,form to email,form to database,contact form builder,form to csv,form to excel,contact form csv
|
5 |
Requires at least: 3.0.5
|
6 |
+
Tested up to: 5.3
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
456 |
|
457 |
== Changelog ==
|
458 |
|
459 |
+
= 1.2.96 =
|
460 |
+
* Compatible with WordPress 5.3
|
461 |
+
|
462 |
= 1.2.95 =
|
463 |
* Code improvements
|
464 |
|
1048 |
|
1049 |
== Upgrade Notice ==
|
1050 |
|
1051 |
+
= 1.2.96 =
|
1052 |
+
* Compatible with WordPress 5.3
|
form-to-email.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
-
Version: 1.2.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
+
Version: 1.2.96
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
js/block.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
function cfte_renderForm(id) {
|
2 |
-
if (
|
3 |
{
|
4 |
try {
|
5 |
var cp_appbooking_fbuilder_myconfig = {"obj":"{\"pub\":true,\"identifier\":\"_"+id+"\",\"messages\": {}}"};
|
6 |
-
var f =
|
7 |
f.fBuild.loadData("form_structure"+id);
|
8 |
} catch (e) { setTimeout ('cfte_renderForm('+id+')',500); }
|
9 |
}
|
1 |
function cfte_renderForm(id) {
|
2 |
+
if (jQuery("#form_structure"+id).length)
|
3 |
{
|
4 |
try {
|
5 |
var cp_appbooking_fbuilder_myconfig = {"obj":"{\"pub\":true,\"identifier\":\"_"+id+"\",\"messages\": {}}"};
|
6 |
+
var f = jQuery("#fbuilder_"+id).CFTEfbuilder(jQuery.parseJSON(cp_appbooking_fbuilder_myconfig.obj));
|
7 |
f.fBuild.loadData("form_structure"+id);
|
8 |
} catch (e) { setTimeout ('cfte_renderForm('+id+')',500); }
|
9 |
}
|