Contact Form7 Widget For Elementor Page Builder - Version 1.0.4

Version Description

  • Css added for select box
Download this release

Release Info

Developer voidthemes
Plugin Icon 128x128 Contact Form7 Widget For Elementor Page Builder
Version 1.0.4
Comparing to
See all releases

Code changes from version 1.0.3 to 1.0.4

readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: voidthemes,voidcoders
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: 4.8.1
6
- Stable tag: 1.0.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -26,9 +26,13 @@ For our other elementor & WP works visit : [VOID Themes](http://voidthemes.com).
26
  For updates follow us on : [Facebook](https://www.facebook.com/voidthemes).
27
 
28
 
 
 
 
29
  [youtube https://youtu.be/sAHspWvhjNg]
30
 
31
 
 
32
  What Does This plugin give you?
33
 
34
  1. Easy use of contact forms created with Contact form 7 pluing inside elementor live editor
@@ -61,6 +65,8 @@ Our Contact Form7 Widget For Elementor Page Builder adds a new section in the el
61
 
62
 
63
  == Changelog ==
 
 
64
  = 1.0.3 =
65
  * CSS Fix
66
  = 1.0.2 =
2
  Contributors: voidthemes,voidcoders
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: 4.8.3
6
+ Stable tag: 1.0.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
26
  For updates follow us on : [Facebook](https://www.facebook.com/voidthemes).
27
 
28
 
29
+ Latest Version Preview
30
+ [youtube https://youtu.be/MlzrZ0zXM24]
31
+ Older Version Preview
32
  [youtube https://youtu.be/sAHspWvhjNg]
33
 
34
 
35
+
36
  What Does This plugin give you?
37
 
38
  1. Easy use of contact forms created with Contact form 7 pluing inside elementor live editor
65
 
66
 
67
  == Changelog ==
68
+ = 1.0.4 =
69
+ * Css added for select box
70
  = 1.0.3 =
71
  * CSS Fix
72
  = 1.0.2 =
void-cf7-widget-elementor.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: 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.0.3
6
  * Author: VOID THEMES
7
  * Plugin URI: http://voidthemes.com/contact-form-7-widget-for-elementor/
8
  * Author URI: http://voidthemes.com
2
  /**
3
  * Plugin Name: 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.0.4
6
  * Author: VOID THEMES
7
  * Plugin URI: http://voidthemes.com/contact-form-7-widget-for-elementor/
8
  * Author URI: http://voidthemes.com
widgets/void-section-cf7.php CHANGED
@@ -139,6 +139,29 @@ protected function _register_controls() {
139
  '{{WRAPPER}} .wpcf7-list-item' => '{{VALUE}}',
140
  ],
141
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  );
143
 
144
  $this->add_control(
139
  '{{WRAPPER}} .wpcf7-list-item' => '{{VALUE}}',
140
  ],
141
  ]
142
+ );
143
+
144
+ $this->add_control(
145
+ 'selectcss',
146
+ [
147
+ 'label' => __( 'Dropdown/ Select Box css', 'elementor' ),
148
+ 'type' => Controls_Manager::TEXTAREA,
149
+ 'placeholder' => 'width: 100;',
150
+ 'selectors' => [
151
+ '{{WRAPPER}} select' => '{{VALUE}}',
152
+ ],
153
+ ]
154
+ );
155
+ $this->add_control(
156
+ 'selectoptionscss',
157
+ [
158
+ 'label' => __( 'Select Options Css', 'elementor' ),
159
+ 'type' => Controls_Manager::TEXTAREA,
160
+ 'placeholder' => 'color: red;',
161
+ 'selectors' => [
162
+ '{{WRAPPER}} select option' => '{{VALUE}}',
163
+ ],
164
+ ]
165
  );
166
 
167
  $this->add_control(