Version Description
- Fixed conflict with 3rd party optimization plugin
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.3.07 |
Comparing to | |
See all releases |
Code changes from version 1.3.06 to 1.3.07
- README.txt +5 -2
- form-to-email.php +10 -1
README.txt
CHANGED
@@ -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.3.06 =
|
460 |
* Compatible with WordPress 5.4
|
461 |
|
@@ -1075,5 +1078,5 @@ When you click a field already added into the contact form builder area, you can
|
|
1075 |
|
1076 |
== Upgrade Notice ==
|
1077 |
|
1078 |
-
= 1.3.
|
1079 |
-
*
|
456 |
|
457 |
== Changelog ==
|
458 |
|
459 |
+
= 1.3.07 =
|
460 |
+
* Fixed conflict with 3rd party optimization plugin
|
461 |
+
|
462 |
= 1.3.06 =
|
463 |
* Compatible with WordPress 5.4
|
464 |
|
1078 |
|
1079 |
== Upgrade Notice ==
|
1080 |
|
1081 |
+
= 1.3.07 =
|
1082 |
+
* Fixed conflict with 3rd party optimization plugin
|
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.3.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
@@ -120,6 +120,15 @@ require_once 'bannerdk.php';
|
|
120 |
// optional opt-in deactivation feedback
|
121 |
require_once 'cp-feedback.php';
|
122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
// code for compatibility with third party scripts
|
124 |
add_filter('option_sbp_settings', 'cpcfte_sbp_fix_conflict' );
|
125 |
function cpcfte_sbp_fix_conflict($option)
|
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.3.07
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
120 |
// optional opt-in deactivation feedback
|
121 |
require_once 'cp-feedback.php';
|
122 |
|
123 |
+
|
124 |
+
// code for compatibility with third party scripts
|
125 |
+
add_filter('litespeed_cache_optimize_js_excludes', 'cfte_litespeed_cache_optimize_js_excludes' );
|
126 |
+
function cfte_litespeed_cache_optimize_js_excludes($options)
|
127 |
+
{
|
128 |
+
return "jquery.validate.min.js\njQuery.stringify.js\njquery.validate.js\njquery.js\n".$options;
|
129 |
+
}
|
130 |
+
|
131 |
+
|
132 |
// code for compatibility with third party scripts
|
133 |
add_filter('option_sbp_settings', 'cpcfte_sbp_fix_conflict' );
|
134 |
function cpcfte_sbp_fix_conflict($option)
|