Contact Form by WD – responsive drag & drop contact form builder tool - Version 1.11.11

Version Description

  • Fixed: Conflict with Jetpack Contact Form module
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Contact Form by WD – responsive drag & drop contact form builder tool
Version 1.11.11
Comparing to
See all releases

Code changes from version 1.11.10 to 1.11.11

admin/views/FMViewManage_fm.php CHANGED
@@ -667,7 +667,7 @@ class FMViewManage_fmc {
667
  <input type="hidden" value="<?php echo WD_FMC_URL; ?>" id="form_plugins_url" />
668
  <div id="main_editor" style="position: fixed; display: none; z-index: 140;">
669
  <?php if (user_can_richedit()) {
670
- wp_editor('', 'form_maker_editor', array('teeny' => FALSE, 'textarea_name' => 'form_maker_editor', 'media_buttons' => FALSE, 'textarea_rows' => 5));
671
  }
672
  else { ?>
673
  <textarea name="form_maker_editor" id="form_maker_editor" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
@@ -739,7 +739,7 @@ class FMViewManage_fmc {
739
  <label>Description: </label>
740
  <div id="description_editor" style="width:470px; display: inline-block; vertical-align: middle;">
741
  <?php if (user_can_richedit()) {
742
- wp_editor($row->header_description, 'header_description', array('teeny' => FALSE, 'textarea_name' => 'header_description', 'media_buttons' => FALSE, 'textarea_rows' => 5));
743
  }
744
  else { ?>
745
  <textarea name="header_description" id="header_description" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
@@ -2166,7 +2166,7 @@ class FMViewManage_fmc {
2166
  </div>
2167
  <?php
2168
  if (user_can_richedit()) {
2169
- wp_editor($row->script_mail, 'script_mail', array('teeny' => FALSE, 'textarea_name' => 'script_mail', 'media_buttons' => FALSE, 'textarea_rows' => 5));
2170
  }
2171
  else {
2172
  ?>
@@ -2385,7 +2385,7 @@ class FMViewManage_fmc {
2385
  </div>
2386
  <?php
2387
  if (user_can_richedit()) {
2388
- wp_editor($row->script_mail_user, 'script_mail_user', array('teeny' => FALSE, 'textarea_name' => 'script_mail_user', 'media_buttons' => FALSE, 'textarea_rows' => 5));
2389
  }
2390
  else {
2391
  ?>
@@ -2505,7 +2505,7 @@ class FMViewManage_fmc {
2505
  <input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
2506
  <?php
2507
  if (user_can_richedit()) {
2508
- wp_editor($row->submit_text, 'submit_text', array('teeny' => FALSE, 'textarea_name' => 'submit_text', 'media_buttons' => FALSE, 'textarea_rows' => 5));
2509
  }
2510
  else {
2511
  ?>
667
  <input type="hidden" value="<?php echo WD_FMC_URL; ?>" id="form_plugins_url" />
668
  <div id="main_editor" style="position: fixed; display: none; z-index: 140;">
669
  <?php if (user_can_richedit()) {
670
+ wp_editor('', 'form_maker_editor', array('teeny' => TRUE, 'textarea_name' => 'form_maker_editor', 'media_buttons' => FALSE, 'textarea_rows' => 5));
671
  }
672
  else { ?>
673
  <textarea name="form_maker_editor" id="form_maker_editor" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
739
  <label>Description: </label>
740
  <div id="description_editor" style="width:470px; display: inline-block; vertical-align: middle;">
741
  <?php if (user_can_richedit()) {
742
+ wp_editor($row->header_description, 'header_description', array('teeny' => TRUE, 'textarea_name' => 'header_description', 'media_buttons' => FALSE, 'textarea_rows' => 5));
743
  }
744
  else { ?>
745
  <textarea name="header_description" id="header_description" cols="40" rows="5" style="width: 440px; height: 350px;" class="mce_editable" aria-hidden="true"></textarea>
2166
  </div>
2167
  <?php
2168
  if (user_can_richedit()) {
2169
+ wp_editor($row->script_mail, 'script_mail', array('teeny' => TRUE, 'textarea_name' => 'script_mail', 'media_buttons' => FALSE, 'textarea_rows' => 5));
2170
  }
2171
  else {
2172
  ?>
2385
  </div>
2386
  <?php
2387
  if (user_can_richedit()) {
2388
+ wp_editor($row->script_mail_user, 'script_mail_user', array('teeny' => TRUE, 'textarea_name' => 'script_mail_user', 'media_buttons' => FALSE, 'textarea_rows' => 5));
2389
  }
2390
  else {
2391
  ?>
2505
  <input style="border: 1px solid silver; font-size: 10px; margin: 3px;" type="button" value="User Email" onClick="insertAtCursor(<?php echo $choise; ?>,'useremail')" />
2506
  <?php
2507
  if (user_can_richedit()) {
2508
+ wp_editor($row->submit_text, 'submit_text', array('teeny' => TRUE, 'textarea_name' => 'submit_text', 'media_buttons' => FALSE, 'textarea_rows' => 5));
2509
  }
2510
  else {
2511
  ?>
contact-form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Contact Form Maker
4
  * Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
6
- * Version: 1.11.10
7
  * Author: WebDorado Form Builder Team
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -11,7 +11,7 @@
11
  define('WD_FMC_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
12
  define('WD_FMC_URL', plugins_url(plugin_basename(dirname(__FILE__))));
13
  define('WD_FMC_MAIN_FILE', plugin_basename(__FILE__));
14
- define('WD_FMC_VERSION', '1.11.10');
15
  // Plugin menu.
16
  function form_maker_options_panel_fmc() {
17
  if (!get_option('form_maker_pro_active', FALSE)) {
3
  * Plugin Name: Contact Form Maker
4
  * Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: WordPress Contact Form Maker is a simple contact form builder, which allows the user with almost no knowledge of programming to create and edit different type of contact forms.
6
+ * Version: 1.11.11
7
  * Author: WebDorado Form Builder Team
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
11
  define('WD_FMC_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
12
  define('WD_FMC_URL', plugins_url(plugin_basename(dirname(__FILE__))));
13
  define('WD_FMC_MAIN_FILE', plugin_basename(__FILE__));
14
+ define('WD_FMC_VERSION', '1.11.11');
15
  // Plugin menu.
16
  function form_maker_options_panel_fmc() {
17
  if (!get_option('form_maker_pro_active', FALSE)) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-contact-form-maker-plugin.
4
  Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
5
  Requires at least: 3.4
6
  Tested up to: 4.8
7
- Stable tag: 1.11.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,7 +15,7 @@ Create simple contact forms or complex applications forms with this FREE and int
15
 
16
  [WordPress Contact Form Maker](http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html)
17
 
18
- WordPress Contact Form Maker is a simple contact form creator, which allows the user with almost no knowledge of programming to create and edit different type of responsive forms. The product is similar to the WordPress Form Maker using most of its functionality, whereas there are also some differences. If want to build complicated contact forms with various field types like Date, Time, Single choice, Multiple choice, etc., than you can use [WordPress Form Builder](http://wordpress.org/extend/plugins/form-maker).
19
 
20
  The number of fields for the WordPress forms builder plugin is unlimited and having large amount of fields will not cause any malfunctioning of the contact form. You can add different types of contact form fields, including inputs (e.g. e-mail, password, text area, text input and etc.), Captcha (as well as possibility of adding Google standard ReCaptcha), custom and standard buttons, as well as Map field.
21
 
@@ -90,8 +90,8 @@ Galician (gl_ES)
90
  Georgian (ka_GE)
91
  German (de_DE)
92
  Greek (el)
93
- Hebrew (he_IL)
94
  Hindi (hi_IN)
 
95
  Hungarian (hu_HU)
96
  Indonesian (id_ID)
97
  Italian (it_IT)
@@ -104,8 +104,8 @@ Malay (ms_MY)
104
  Maltese (mt_MT)
105
  Norwegian (nb_NO)
106
  Persian (fa_IR)
107
- Polish (pl_PL)
108
  Portuguese (pt_PT)
 
109
  Russian (ru_RU)
110
  Romanian (ro_RO)
111
  Serbian (sr_RS)
@@ -158,6 +158,9 @@ If you want to update the plugin while preserving your existing contact forms, y
158
 
159
  == Changelog ==
160
 
 
 
 
161
  = 1.11.10 =
162
  * Fixed: Bug on email verification
163
 
@@ -165,16 +168,16 @@ If you want to update the plugin while preserving your existing contact forms, y
165
  * Fixed: Bug on limitations
166
 
167
  = 1.11.8 =
168
- * Added: Overview page
169
  * Added: Form Header
170
- * Added: New Themes
171
  * Added: New Theme Editor
 
172
  * Added: Form Display Options (Embedded, Popup, Topbar, Scrollbox)
173
- * Removed: Featured Plugins, Featured Themes pages
174
  * Fixed: Google maps api conflict with other plugins.
175
  * Fixed: CSS conflict with some ajax themes
176
- * Fixed: Themes - bug on save as copy
177
  * Fixed: Security issues
 
178
 
179
  = 1.8.43 =
180
  * Fixed: Shortcode editor pop-up styles.
4
  Tags: contact, contact form, email, forms, contact forms, custom form, feedback, form builder, form manager, form maker, forms builder, form builder wordpress
5
  Requires at least: 3.4
6
  Tested up to: 4.8
7
+ Stable tag: 1.11.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
15
 
16
  [WordPress Contact Form Maker](http://web-dorado.com/products/wordpress-contact-form-maker-plugin.html)
17
 
18
+ WordPress Contact Form Maker is a simple contact form creator plugin, which allows the user with almost no knowledge of programming to create and edit different type of responsive forms. The product is similar to the WordPress Form Maker using most of its functionality, whereas there are also some differences. If want to build complicated contact forms with various field types like Date, Time, Single choice, Multiple choice, etc., than you can use [WordPress Form Builder](http://wordpress.org/extend/plugins/form-maker).
19
 
20
  The number of fields for the WordPress forms builder plugin is unlimited and having large amount of fields will not cause any malfunctioning of the contact form. You can add different types of contact form fields, including inputs (e.g. e-mail, password, text area, text input and etc.), Captcha (as well as possibility of adding Google standard ReCaptcha), custom and standard buttons, as well as Map field.
21
 
90
  Georgian (ka_GE)
91
  German (de_DE)
92
  Greek (el)
 
93
  Hindi (hi_IN)
94
+ Hebrew (he_IL)
95
  Hungarian (hu_HU)
96
  Indonesian (id_ID)
97
  Italian (it_IT)
104
  Maltese (mt_MT)
105
  Norwegian (nb_NO)
106
  Persian (fa_IR)
 
107
  Portuguese (pt_PT)
108
+ Polish (pl_PL)
109
  Russian (ru_RU)
110
  Romanian (ro_RO)
111
  Serbian (sr_RS)
158
 
159
  == Changelog ==
160
 
161
+ = 1.11.11 =
162
+ * Fixed: Conflict with Jetpack Contact Form module
163
+
164
  = 1.11.10 =
165
  * Fixed: Bug on email verification
166
 
168
  * Fixed: Bug on limitations
169
 
170
  = 1.11.8 =
 
171
  * Added: Form Header
172
+ * Added: Overview page
173
  * Added: New Theme Editor
174
+ * Added: New Themes
175
  * Added: Form Display Options (Embedded, Popup, Topbar, Scrollbox)
176
+ * Fixed: Themes - bug on save as copy
177
  * Fixed: Google maps api conflict with other plugins.
178
  * Fixed: CSS conflict with some ajax themes
 
179
  * Fixed: Security issues
180
+ * Removed: Featured Plugins, Featured Themes pages
181
 
182
  = 1.8.43 =
183
  * Fixed: Shortcode editor pop-up styles.