Version Description
- Fix: Elementor editor js issue during cf7 create and update on elementor editor.
Download this release
Release Info
Developer | voidthemes |
Plugin | Contact Form7 Widget For Elementor Page Builder |
Version | 1.1.5 |
Comparing to | |
See all releases |
Code changes from version 1.1.4 to 1.1.5
custom-editor/assets/js/void-cf7-elementor-editor.js
CHANGED
@@ -71,18 +71,7 @@
|
|
71 |
// this ensures the data remains the same even after switching back from advanced tab to content tab
|
72 |
$(".elementor-panel").mouseenter(function(){
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
// this ensures the data remains the same even after switching back from advanced tab to content tab
|
77 |
-
$( '.elementor-tab-control-content a' ).on( 'click', function(event){
|
78 |
-
cf7_data_pass_around_model(panel,model,view);
|
79 |
-
});
|
80 |
-
});
|
81 |
-
|
82 |
-
// fix datalose after switching control section
|
83 |
-
$(".elementor-control-section_content").on("click", function (event) {
|
84 |
-
cf7_data_pass_around_model(panel,model,view);
|
85 |
-
});
|
86 |
|
87 |
});
|
88 |
|
71 |
// this ensures the data remains the same even after switching back from advanced tab to content tab
|
72 |
$(".elementor-panel").mouseenter(function(){
|
73 |
|
74 |
+
cf7_data_pass_around_model(panel,model,view);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
});
|
77 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: voidthemes,voidcoders,soyket,shawon786
|
|
3 |
Tags: page-builder, elementor, cf7, contact-form-7, contact-form-7 widget, widget, elementor add on, email, contact, form
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.5.1
|
6 |
-
Stable tag: 1.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -77,6 +77,8 @@ Our Contact Form7 Widget For Elementor Page Builder adds a new section in the el
|
|
77 |
Update the plugin either via wp dashboard or via FTP. After update make sure you clear your browser cache.
|
78 |
|
79 |
== Changelog ==
|
|
|
|
|
80 |
= 1.1.4 =
|
81 |
* Fix: Notice dismissible issue fix.
|
82 |
= 1.1.3 =
|
3 |
Tags: page-builder, elementor, cf7, contact-form-7, contact-form-7 widget, widget, elementor add on, email, contact, form
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.5.1
|
6 |
+
Stable tag: 1.1.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
77 |
Update the plugin either via wp dashboard or via FTP. After update make sure you clear your browser cache.
|
78 |
|
79 |
== Changelog ==
|
80 |
+
= 1.1.5 =
|
81 |
+
* Fix: Elementor editor js issue during cf7 create and update on elementor editor.
|
82 |
= 1.1.4 =
|
83 |
* Fix: Notice dismissible issue fix.
|
84 |
= 1.1.3 =
|
void-cf7-widget-elementor.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Void Contact Form 7 Widget For Elementor Page Builder
|
4 |
* Description: Adds Contact Form 7 widget element to Elementor page builder for easy drag & drop the created contact forms with CF7 (contact form 7).
|
5 |
-
* Version: 1.1.
|
6 |
* Author: voidCoders
|
7 |
* Plugin URI: https://demo.voidcoders.com/plugins/contact-form7-widget-for-elementor/
|
8 |
* Author URI: https://voidcoders.com
|
@@ -11,7 +11,7 @@
|
|
11 |
|
12 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
13 |
|
14 |
-
define('CF7_WIDGET_E_VERSION', '1.1.
|
15 |
define('CF7_WIDGET_E_PLUGIN_URL', trailingslashit(plugin_dir_url( __FILE__ )));
|
16 |
define('CF7_WIDGET_E_PLUGIN_DIR', trailingslashit(plugin_dir_path( __FILE__ )));
|
17 |
|
2 |
/**
|
3 |
* Plugin Name: Void Contact Form 7 Widget For Elementor Page Builder
|
4 |
* Description: Adds Contact Form 7 widget element to Elementor page builder for easy drag & drop the created contact forms with CF7 (contact form 7).
|
5 |
+
* Version: 1.1.5
|
6 |
* Author: voidCoders
|
7 |
* Plugin URI: https://demo.voidcoders.com/plugins/contact-form7-widget-for-elementor/
|
8 |
* Author URI: https://voidcoders.com
|
11 |
|
12 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
13 |
|
14 |
+
define('CF7_WIDGET_E_VERSION', '1.1.5');
|
15 |
define('CF7_WIDGET_E_PLUGIN_URL', trailingslashit(plugin_dir_url( __FILE__ )));
|
16 |
define('CF7_WIDGET_E_PLUGIN_DIR', trailingslashit(plugin_dir_path( __FILE__ )));
|
17 |
|