Version Description
- Fix: Elementor compatiability added.
Download this release
Release Info
Developer | voidthemes |
Plugin | Contact Form7 Widget For Elementor Page Builder |
Version | 1.1.6 |
Comparing to | |
See all releases |
Code changes from version 1.1.5 to 1.1.6
- readme.txt +4 -2
- void-cf7-widget-elementor.php +4 -2
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
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.
|
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.5 =
|
81 |
* Fix: Elementor editor js issue during cf7 create and update on elementor editor.
|
82 |
= 1.1.4 =
|
2 |
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.6
|
6 |
+
Stable tag: 1.1.6
|
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.6 =
|
81 |
+
* Fix: Elementor compatiability added.
|
82 |
= 1.1.5 =
|
83 |
* Fix: Elementor editor js issue during cf7 create and update on elementor editor.
|
84 |
= 1.1.4 =
|
void-cf7-widget-elementor.php
CHANGED
@@ -2,16 +2,18 @@
|
|
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
|
9 |
* Text Domain: void
|
|
|
|
|
10 |
*/
|
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.6
|
6 |
* Author: voidCoders
|
7 |
* Plugin URI: https://demo.voidcoders.com/plugins/contact-form7-widget-for-elementor/
|
8 |
* Author URI: https://voidcoders.com
|
9 |
* Text Domain: void
|
10 |
+
* Elementor tested up to: 3.0.14
|
11 |
+
* Elementor Pro tested up to: 3.0.8
|
12 |
*/
|
13 |
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
15 |
|
16 |
+
define('CF7_WIDGET_E_VERSION', '1.1.6');
|
17 |
define('CF7_WIDGET_E_PLUGIN_URL', trailingslashit(plugin_dir_url( __FILE__ )));
|
18 |
define('CF7_WIDGET_E_PLUGIN_DIR', trailingslashit(plugin_dir_path( __FILE__ )));
|
19 |
|