Version Description
- Compatible with WordPress 5.6
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.3.16 |
Comparing to | |
See all releases |
Code changes from version 1.3.15 to 1.3.16
- README.txt +6 -3
- cp-main-class.inc.php +2 -2
- css/style.css +1 -1
- form-to-email.php +1 -1
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.3.15 =
|
460 |
* Fix to jQuery deprecated code
|
461 |
|
@@ -1099,5 +1102,5 @@ When you click a field already added into the contact form builder area, you can
|
|
1099 |
|
1100 |
== Upgrade Notice ==
|
1101 |
|
1102 |
-
= 1.3.
|
1103 |
-
*
|
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.6
|
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.3.16 =
|
460 |
+
* Compatible with WordPress 5.6
|
461 |
+
|
462 |
= 1.3.15 =
|
463 |
* Fix to jQuery deprecated code
|
464 |
|
1102 |
|
1103 |
== Upgrade Notice ==
|
1104 |
|
1105 |
+
= 1.3.16 =
|
1106 |
+
* Compatible with WordPress 5.6
|
cp-main-class.inc.php
CHANGED
@@ -449,8 +449,8 @@ class CP_ContactFormToEmail extends CP_CFTEMAIL_BaseClass {
|
|
449 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/jquery.js'; ?>'></script>
|
450 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'core.min.js'; ?>'></script>
|
451 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'datepicker.min.js'; ?>'></script>
|
452 |
-
|
453 |
-
|
454 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'tooltip.min.js'; ?>'></script>
|
455 |
<script type='text/javascript' src='<?php echo plugins_url('js/jquery.validate.js', __FILE__); ?>'></script>
|
456 |
<script type='text/javascript'>
|
449 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/jquery.js'; ?>'></script>
|
450 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'core.min.js'; ?>'></script>
|
451 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'datepicker.min.js'; ?>'></script>
|
452 |
+
<?php if (@file_exists(dirname( __FILE__ ).'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'widget.min.js')) { ?><script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'widget.min.js'; ?>'></script><?php } ?>
|
453 |
+
<?php if (@file_exists(dirname( __FILE__ ).'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'position.min.js')) { ?><script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'position.min.js'; ?>'></script><?php } ?>
|
454 |
<script type='text/javascript' src='<?php echo $plugin_url.'/../../../wp-includes/js/jquery/ui/'.$prefix_ui.'tooltip.min.js'; ?>'></script>
|
455 |
<script type='text/javascript' src='<?php echo plugins_url('js/jquery.validate.js', __FILE__); ?>'></script>
|
456 |
<script type='text/javascript'>
|
css/style.css
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
.width30{width:30%}
|
9 |
.padding10{padding:10px;}
|
10 |
.button, .form-builder .button{float:left;margin:5px 15px;}
|
11 |
-
.button.n span{color:#AED0EA}
|
12 |
#tabs{height:620px;overflow:auto}
|
13 |
#fbuilder{height:600px;overflow:auto;position:relative;}
|
14 |
#fbuilder .fields{border:1px solid transparent;padding:3px 10px 14px 10px;margin:5px 0px;display:block;position:relative}
|
8 |
.width30{width:30%}
|
9 |
.padding10{padding:10px;}
|
10 |
.button, .form-builder .button{float:left;margin:5px 15px;}
|
11 |
+
.button.n span,.button.n {color:#AED0EA;border-color:#AED0EA}
|
12 |
#tabs{height:620px;overflow:auto}
|
13 |
#fbuilder{height:600px;overflow:auto;position:relative;}
|
14 |
#fbuilder .fields{border:1px solid transparent;padding:3px 10px 14px 10px;margin:5px 0px;display:block;position:relative}
|
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
|
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.16
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|