Version Description
- Fix to jQuery deprecated code
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.3.15 |
Comparing to | |
See all releases |
Code changes from version 1.3.14 to 1.3.15
- README.txt +5 -2
- cp-feedback.php +1 -1
- form-to-email.php +1 -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.14 =
|
460 |
* Compatible with WordPress 5.5
|
461 |
|
@@ -1096,5 +1099,5 @@ When you click a field already added into the contact form builder area, you can
|
|
1096 |
|
1097 |
== Upgrade Notice ==
|
1098 |
|
1099 |
-
= 1.3.
|
1100 |
-
*
|
456 |
|
457 |
== Changelog ==
|
458 |
|
459 |
+
= 1.3.15 =
|
460 |
+
* Fix to jQuery deprecated code
|
461 |
+
|
462 |
= 1.3.14 =
|
463 |
* Compatible with WordPress 5.5
|
464 |
|
1099 |
|
1100 |
== Upgrade Notice ==
|
1101 |
|
1102 |
+
= 1.3.15 =
|
1103 |
+
* Fix to jQuery deprecated code
|
cp-feedback.php
CHANGED
@@ -66,7 +66,7 @@ function cpcfte_feedback_javascript() { ?>
|
|
66 |
<script type="text/javascript" >
|
67 |
|
68 |
$ = jQuery.noConflict()
|
69 |
-
$(
|
70 |
document.querySelector('[data-slug="contact-form-to-email"] .deactivate a').addEventListener('click', function(event){
|
71 |
event.preventDefault()
|
72 |
var urlRedirect = document.querySelector('[data-slug="contact-form-to-email"] .deactivate a').getAttribute('href');
|
66 |
<script type="text/javascript" >
|
67 |
|
68 |
$ = jQuery.noConflict()
|
69 |
+
$(window).on('load',function() {
|
70 |
document.querySelector('[data-slug="contact-form-to-email"] .deactivate a').addEventListener('click', function(event){
|
71 |
event.preventDefault()
|
72 |
var urlRedirect = document.querySelector('[data-slug="contact-form-to-email"] .deactivate a').getAttribute('href');
|
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.15
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|