Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.7.93

Version Description

Fixed: Bug in mailing
Changed: Calendar styles

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.7.93
Comparing to
See all releases

Code changes from version 1.7.92 to 1.7.93

css/calendar-jos.css CHANGED
@@ -6,9 +6,9 @@
6
  }
7
 
8
  div.calendar {
9
- position: relative;
10
- z-index: 100;
11
- width: 226px;
12
  }
13
 
14
  .calendar,
6
  }
7
 
8
  div.calendar {
9
+ position: relative;
10
+ z-index: 100;
11
+ width: 326px;
12
  }
13
 
14
  .calendar,
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.7.92
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -269,7 +269,7 @@ function register_fmemailverification_cpt(){
269
  // Activate plugin.
270
  function form_maker_activate() {
271
  $version = get_option("wd_form_maker_version");
272
- $new_version = '1.7.92';
273
  global $wpdb;
274
  if (!$version) {
275
  add_option("wd_form_maker_version", $new_version, '', 'no');
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.7.93
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
269
  // Activate plugin.
270
  function form_maker_activate() {
271
  $version = get_option("wd_form_maker_version");
272
+ $new_version = '1.7.93';
273
  global $wpdb;
274
  if (!$version) {
275
  add_option("wd_form_maker_version", $new_version, '', 'no');
frontend/models/FMModelForm_maker.php CHANGED
@@ -2202,7 +2202,7 @@ class FMModelForm_maker {
2202
  $headers .= "Bcc: <" . $bcc . ">\r\n";
2203
  }
2204
 
2205
- $custom_fields_value = array( $ip, $useremail, $username, $subid, $list );
2206
  foreach($custom_fields as $key=>$custom_field)
2207
  {
2208
  if(strpos($new_script, "%".$custom_field."%")>-1)
@@ -2281,8 +2281,7 @@ class FMModelForm_maker {
2281
  else {
2282
  $content_type = "text/plain";
2283
  $mode = 0;
2284
- $list = $list_text_mode;
2285
- $list = wordwrap($list, 1000, "\n", true);
2286
  $new_script = str_replace(array('<p>','</p>'),'',$row->script_mail);
2287
  }
2288
 
2202
  $headers .= "Bcc: <" . $bcc . ">\r\n";
2203
  }
2204
 
2205
+ $custom_fields_value = array( $ip, $useremail, $username, $subid, $list_user );
2206
  foreach($custom_fields as $key=>$custom_field)
2207
  {
2208
  if(strpos($new_script, "%".$custom_field."%")>-1)
2281
  else {
2282
  $content_type = "text/plain";
2283
  $mode = 0;
2284
+ $list = wordwrap($list_text_mode, 1000, "\n", true);
 
2285
  $new_script = str_replace(array('<p>','</p>'),'',$row->script_mail);
2286
  }
2287
 
frontend/views/FMViewForm_maker.php CHANGED
@@ -2332,7 +2332,7 @@ class FMViewForm_maker {
2332
  if($required) {
2333
  $rep.='<span class="wdform-required">'.$required_sym.'</span>';
2334
  }
2335
- $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><input type="text" value="'.$param['w_date'].'" class="wdform-date" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" maxlength="10" '.$param['attributes'].'><input id="wdform_'.$id1.'_button'.$form_id.'" class="wdform-calendar-button" type="reset" value="'.$param['w_but_val'].'" format="'.$param['w_format'].'" onclick="return showCalendar(\'wdform_'.$id1.'_element'.$form_id.'\' , \''.$param['w_format'].'\', '.$disable_past_days.')" '.$param['attributes'].' ></div></div>';
2336
 
2337
  if($required) {
2338
  $check_js.='
2332
  if($required) {
2333
  $rep.='<span class="wdform-required">'.$required_sym.'</span>';
2334
  }
2335
+ $rep.='</div><div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].';"><input type="text" value="'.$param['w_date'].'" class="wdform-date" id="wdform_'.$id1.'_element'.$form_id.'" name="wdform_'.$id1.'_element'.$form_id.'" maxlength="10" '.$param['attributes'].'><input id="wdform_'.$id1.'_button'.$form_id.'" class="wdform-calendar-button" value="'.$param['w_but_val'].'" format="'.$param['w_format'].'" onclick="return showCalendar(\'wdform_'.$id1.'_element'.$form_id.'\' , \''.$param['w_format'].'\', '.$disable_past_days.')" '.$param['attributes'].' ></div></div>';
2336
 
2337
  if($required) {
2338
  $check_js.='
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha , pdf
5
  Requires at least: 3.4
6
  Tested up to: 4.3
7
- Stable tag: 1.7.92
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -299,6 +299,10 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
299
 
300
  == Changelog ==
301
 
 
 
 
 
302
  = 1.7.92 =
303
  Fixed: Bug in mailing
304
 
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha , pdf
5
  Requires at least: 3.4
6
  Tested up to: 4.3
7
+ Stable tag: 1.7.93
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
299
 
300
  == Changelog ==
301
 
302
+ = 1.7.93 =
303
+ Fixed: Bug in mailing
304
+ Changed: Calendar styles
305
+
306
  = 1.7.92 =
307
  Fixed: Bug in mailing
308