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

Version Description

Download this release

Release Info

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

Code changes from version 1.12.28 to 1.12.30

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.12.28
7
  * Author: WebDorado Form Builder Team
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -95,8 +95,8 @@ final class WDFM {
95
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
96
  $this->front_urls = $this->get_front_urls();
97
  $this->main_file = plugin_basename(__FILE__);
98
- $this->plugin_version = '1.12.28';
99
- $this->db_version = '2.12.28';
100
  $this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
101
  $this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
102
  $this->menu_slug = 'manage' . $this->menu_postfix;
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.12.30
7
  * Author: WebDorado Form Builder Team
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
95
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
96
  $this->front_urls = $this->get_front_urls();
97
  $this->main_file = plugin_basename(__FILE__);
98
+ $this->plugin_version = '1.12.30';
99
+ $this->db_version = '2.12.30';
100
  $this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
101
  $this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
102
  $this->menu_slug = 'manage' . $this->menu_postfix;
frontend/models/form_maker.php CHANGED
@@ -1686,7 +1686,7 @@ class FMModelForm_maker {
1686
  $value = $element;
1687
  break;
1688
  }
1689
- $value = isset( $_POST[ 'wdform_' . $i . "_element" . $id ] ) && $_POST[ 'wdform_' . $i . "_element" . $id ] != 'empty_value' ? esc_html( $_POST[ 'wdform_' . $i . "_element" . $id ] ) : "";
1690
 
1691
  if ( $required && !isset( $_POST[ 'wdform_' . $i . "_element" . $id ] ) ) {
1692
  $missing_required_field = TRUE;
1686
  $value = $element;
1687
  break;
1688
  }
1689
+ $value = isset( $_POST[ 'wdform_' . $i . "_element" . $id ] ) ? esc_html( $_POST[ 'wdform_' . $i . "_element" . $id ] ) : "";
1690
 
1691
  if ( $required && !isset( $_POST[ 'wdform_' . $i . "_element" . $id ] ) ) {
1692
  $missing_required_field = TRUE;
frontend/views/form_maker.php CHANGED
@@ -2052,6 +2052,7 @@ class FMViewForm_maker {
2052
  $param['id'] = '';
2053
  $param['w_class'] .= ' wd-flex-wrap' . ($param['w_flow'] != 'hor' ? ' wd-flex-column' : ' wd-flex-row');
2054
  $html = '<div class="wd-flex ' . ($param['w_flow'] == 'hor' ? ($param['w_rowcol'] > 1 ? 'wd-flex-column' : 'wd-flex-row') : ($param['w_rowcol'] > 1 ? 'wd-flex-row' : 'wd-flex-column')) . '">';
 
2055
  $total_queries = 0;
2056
  foreach ( $param['w_choices'] as $key => $choice ) {
2057
  $key1 = $key + $total_queries;
@@ -2115,7 +2116,6 @@ class FMViewForm_maker {
2115
  $param['w_allow_other_num'] = $param['w_allow_other_num'] == $key ? $key1 : $param['w_allow_other_num'];
2116
  }
2117
  }
2118
- $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="empty_value" />';
2119
  $html .= '</div>';
2120
  // Generate field.
2121
  $rep = $this->wdform_field($type, $param, $row, $html);
@@ -2211,6 +2211,7 @@ class FMViewForm_maker {
2211
  $param['w_class'] .= ' wd-flex-wrap' . ($param['w_flow'] != 'hor' ? ' wd-flex-column' : ' wd-flex-row');
2212
 
2213
  $html = '<div class="wd-flex ' . ($param['w_flow'] == 'hor' ? ($param['w_rowcol'] > 1 ? 'wd-flex-column' : 'wd-flex-row') : ($param['w_rowcol'] > 1 ? 'wd-flex-row' : 'wd-flex-column')) . '">';
 
2214
  $total_queries = 0;
2215
  foreach ( $param['w_choices'] as $key => $choice ) {
2216
  $key1 = $key + $total_queries;
@@ -2271,7 +2272,6 @@ class FMViewForm_maker {
2271
  $param['w_allow_other_num'] = $param['w_allow_other_num'] == $key ? $key1 : $param['w_allow_other_num'];
2272
  }
2273
  }
2274
- $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="empty_value" />';
2275
  $html .= '</div>';
2276
 
2277
  // Generate field.
@@ -3302,6 +3302,7 @@ class FMViewForm_maker {
3302
 
3303
  $html = '<input type="hidden" value="' . $param['w_total'] . '" name="wdform_' . $id1 . '_grading_total' . $form_id . '" id="wdform_' . $id1 . '_grading_total' . $form_id . '" />';
3304
  $html .= '<div id="wdform_' . $id1 . '_element' . $form_id . '">';
 
3305
  for ( $i = 0; $i < count($w_items); $i++ ) {
3306
  $value = (isset($_POST['wdform_' . $id1 . '_element' . $form_id . '_' . $i]) ? esc_html(stripslashes($_POST['wdform_' . $id1 . '_element' . $form_id . '_' . $i])) : '');
3307
  $html .= '<div class="wdform_grading">';
@@ -3316,7 +3317,6 @@ class FMViewForm_maker {
3316
  $html .= '<span id="wdform_' . $id1 . '_total_element' . $form_id . '">' . $param['w_total'] . '</span>';
3317
  $html .= '<span id="wdform_' . $id1 . '_text_element' . $form_id . '"></span>';
3318
  $html .= '</div>';
3319
- $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="empty_value" />';
3320
  $html .= '</div>';
3321
 
3322
  // Generate field.
@@ -3413,6 +3413,7 @@ class FMViewForm_maker {
3413
  $param['w_class'] .= ' wd-flex-row';
3414
 
3415
  $html = '<div id="wdform_' . $id1 . '_element' . $form_id . '" class="wd-width-100 wdform-matrix-table" ' . $param['attributes'] . '>';
 
3416
  $html .= '<div class="wd-table-group">';
3417
  $html .= '<div class="wdform-matrix-head">';
3418
  $html .= '<div class="wd-table-cell"></div>';
@@ -3420,7 +3421,6 @@ class FMViewForm_maker {
3420
  $html .= '</div>';
3421
  $html .= $rows_columns;
3422
  $html .= '</div>';
3423
- $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="empty_value" />';
3424
  $html .= '</div>';
3425
 
3426
  // Generate field.
2052
  $param['id'] = '';
2053
  $param['w_class'] .= ' wd-flex-wrap' . ($param['w_flow'] != 'hor' ? ' wd-flex-column' : ' wd-flex-row');
2054
  $html = '<div class="wd-flex ' . ($param['w_flow'] == 'hor' ? ($param['w_rowcol'] > 1 ? 'wd-flex-column' : 'wd-flex-row') : ($param['w_rowcol'] > 1 ? 'wd-flex-row' : 'wd-flex-column')) . '">';
2055
+ $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="" />';
2056
  $total_queries = 0;
2057
  foreach ( $param['w_choices'] as $key => $choice ) {
2058
  $key1 = $key + $total_queries;
2116
  $param['w_allow_other_num'] = $param['w_allow_other_num'] == $key ? $key1 : $param['w_allow_other_num'];
2117
  }
2118
  }
 
2119
  $html .= '</div>';
2120
  // Generate field.
2121
  $rep = $this->wdform_field($type, $param, $row, $html);
2211
  $param['w_class'] .= ' wd-flex-wrap' . ($param['w_flow'] != 'hor' ? ' wd-flex-column' : ' wd-flex-row');
2212
 
2213
  $html = '<div class="wd-flex ' . ($param['w_flow'] == 'hor' ? ($param['w_rowcol'] > 1 ? 'wd-flex-column' : 'wd-flex-row') : ($param['w_rowcol'] > 1 ? 'wd-flex-row' : 'wd-flex-column')) . '">';
2214
+ $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="" />';
2215
  $total_queries = 0;
2216
  foreach ( $param['w_choices'] as $key => $choice ) {
2217
  $key1 = $key + $total_queries;
2272
  $param['w_allow_other_num'] = $param['w_allow_other_num'] == $key ? $key1 : $param['w_allow_other_num'];
2273
  }
2274
  }
 
2275
  $html .= '</div>';
2276
 
2277
  // Generate field.
3302
 
3303
  $html = '<input type="hidden" value="' . $param['w_total'] . '" name="wdform_' . $id1 . '_grading_total' . $form_id . '" id="wdform_' . $id1 . '_grading_total' . $form_id . '" />';
3304
  $html .= '<div id="wdform_' . $id1 . '_element' . $form_id . '">';
3305
+ $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="" />';
3306
  for ( $i = 0; $i < count($w_items); $i++ ) {
3307
  $value = (isset($_POST['wdform_' . $id1 . '_element' . $form_id . '_' . $i]) ? esc_html(stripslashes($_POST['wdform_' . $id1 . '_element' . $form_id . '_' . $i])) : '');
3308
  $html .= '<div class="wdform_grading">';
3317
  $html .= '<span id="wdform_' . $id1 . '_total_element' . $form_id . '">' . $param['w_total'] . '</span>';
3318
  $html .= '<span id="wdform_' . $id1 . '_text_element' . $form_id . '"></span>';
3319
  $html .= '</div>';
 
3320
  $html .= '</div>';
3321
 
3322
  // Generate field.
3413
  $param['w_class'] .= ' wd-flex-row';
3414
 
3415
  $html = '<div id="wdform_' . $id1 . '_element' . $form_id . '" class="wd-width-100 wdform-matrix-table" ' . $param['attributes'] . '>';
3416
+ $html .= '<input type="hidden" name="wdform_' . $id1 . '_element' . $form_id . '" value="" />';
3417
  $html .= '<div class="wd-table-group">';
3418
  $html .= '<div class="wdform-matrix-head">';
3419
  $html .= '<div class="wd-table-cell"></div>';
3421
  $html .= '</div>';
3422
  $html .= $rows_columns;
3423
  $html .= '</div>';
 
3424
  $html .= '</div>';
3425
 
3426
  // Generate field.
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,10web,wdsupport,formmakersupport
3
  Tags: form, form builder, contact form, custom form, feedback, contact, web contact form, captcha, email, form manager, forms, survey
4
  Requires at least: 3.4
5
  Tested up to: 4.9
6
- Stable tag: 1.12.28
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -453,6 +453,12 @@ Where **{{field_id}}** is the ID of the field you wish to prefill. Also, **{{par
453
 
454
  == Changelog ==
455
 
 
 
 
 
 
 
456
  = 2.12.28 =
457
  * Added: Custom javascript event, occurs after form is submitted.
458
  * Changed: Code structure refactoring.
3
  Tags: form, form builder, contact form, custom form, feedback, contact, web contact form, captcha, email, form manager, forms, survey
4
  Requires at least: 3.4
5
  Tested up to: 4.9
6
+ Stable tag: 1.12.30
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
453
 
454
  == Changelog ==
455
 
456
+ = 2.12.30 =
457
+ * Changed: Separate buttons for deactivation.
458
+
459
+ = 2.12.29 =
460
+ * Fixed: Bug on empty values for some field types.
461
+
462
  = 2.12.28 =
463
  * Added: Custom javascript event, occurs after form is submitted.
464
  * Changed: Code structure refactoring.
wd/assets/css/img/close.svg ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="6917.521 490.293 11.414 11.414">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: none;
6
+ stroke: #cbcbcb;
7
+ stroke-linecap: round;
8
+ stroke-linejoin: round;
9
+ }
10
+ </style>
11
+ </defs>
12
+ <g id="if_misc-_close__1276877_3_" data-name="if_misc-_close__1276877 (3)" transform="translate(6917.229 490)">
13
+ <line id="Line_262" data-name="Line 262" class="cls-1" y1="10" x2="10" transform="translate(1 1)"/>
14
+ <line id="Line_263" data-name="Line 263" class="cls-1" x2="10" y2="10" transform="translate(1 1)"/>
15
+ </g>
16
+ </svg>
wd/assets/js/deactivate_popup.js CHANGED
@@ -19,132 +19,120 @@ var btnVal = 3;
19
  ////////////////////////////////////////////////////////////////////////////////////////
20
  // Public Methods //
21
  ////////////////////////////////////////////////////////////////////////////////////////
22
- function wdReady(prefix){
23
-
24
- var agree_with_pp = false;
25
-
26
- jQuery(document).on("click", "." + window[prefix + "WDDeactivateVars"].deactivate_class, function(){
27
- agree_with_pp = false;
28
- if (!jQuery('#wd-' + prefix + '-submit-and-deactivate').hasClass('button-primary-disabled')) {
29
- jQuery('#wd-' + prefix + '-submit-and-deactivate').addClass('button-primary-disabled')
30
- }
31
- jQuery(".wd-" + prefix + "-opacity").show();
32
- jQuery(".wd-" + prefix + "-deactivate-popup").show();
33
- if(jQuery(this).attr("data-uninstall") == "1"){
34
- btnVal = 2 ;
35
- }
36
-
37
- return false;
38
- });
39
-
40
- jQuery(document).on("change", "[name=" + prefix + "_reasons]", function(){
41
-
42
- var disabled_class = (agree_with_pp === false) ? "button-primary-disabled" : "";
43
-
44
- jQuery("." + prefix + "_additional_details_wrap").html("");
45
- jQuery(".wd-" + prefix + "-deactivate-popup").removeClass("wd-popup-active1 wd-popup-active2 wd-popup-active3 wd-popup-active4");
46
- if(jQuery(this).val() == "reason_plugin_is_hard_to_use_technical_problems"){
47
-
48
- additionalInfo = '<div class="wd-additional-active"><div><strong>Please describe your issue.</strong></div><br>' +
49
- '<textarea name="' + prefix + '_additional_details" rows = "4"></textarea><br>' +
50
- '<div>Our support will contact <input type="text" name="' + prefix + '_email" value="' + window[prefix + "WDDeactivateVars"].email + '"> shortly.</div>'+
51
- '<br><div><button class="button button-primary ' + disabled_class + ' wd-' + prefix + '-deactivate" data-val="' + btnVal + '">Submit support ticket</button></div></div>';
52
- jQuery("." + prefix + "_additional_details_wrap").append(additionalInfo);
53
- jQuery(".wd-" + prefix + "-deactivate-popup").addClass("wd-popup-active1");
54
-
55
- }
56
- else if(jQuery(this).val() == "reason_free_version_limited"){
57
- additionalInfo = '<div class="wd-additional-active">' +
58
- '<div><strong>We believe our premium version will fit your needs.</strong></div>' +
59
- '<div><a href="' + window[prefix + "WDDeactivateVars"].plugin_wd_url+ '" target="_blank">Try with 30 day money back guarantee.</a></div>';
60
-
61
- jQuery("." + prefix + "_additional_details_wrap").append(additionalInfo);
62
- jQuery(".wd-" + prefix + "-deactivate-popup").addClass("wd-popup-active2");
63
- }
64
- else if(jQuery(this).val() == "reason_premium_expensive"){
65
- additionalInfo = '<div class="wd-additional-active">' +
66
- '<div><strong>We have a special offer for you.</strong></div>' +
67
- '<div>Submit this form to get the offer to <input type="text" name="' + prefix + '_email" value="' + window[prefix + "WDDeactivateVars"].email + '"></div>' +
68
- '<br><div><button class="button button-primary ' + disabled_class + ' wd-' + prefix + '-deactivate" data-val="' + btnVal + '">Submit</button></div></div>';
69
-
70
- jQuery("." + prefix + "_additional_details_wrap").append(additionalInfo);
71
- jQuery(".wd-" + prefix + "-deactivate-popup").addClass("wd-popup-active3");
72
- }else{
73
- jQuery(".wd-" + prefix + "-deactivate-popup").addClass("wd-popup-active4");
74
- }
75
-
76
- var checked = (agree_with_pp === true) ? "checked" : "";
77
- var agree_checkbox =
78
- "<div style='margin-top: 5px;'>" +
79
- "<input type='checkbox' " + checked + " name='" + prefix + "_agree_with_pp" + "' id='" + prefix + "_agree_with_pp" + "'/>" +
80
- "By submitting this form your email and website URL will be sent to Web-Dorado. Click the checkbox if you consent to usage of mentioned data by Web-Dorado in accordance with our <a target='_blank' href='https://web-dorado.com/web-dorado-privacy-statement.html'>Privacy Policy</a>."+
81
- "</div>";
82
-
83
- jQuery("." + prefix + "_additional_details_wrap").prepend(agree_checkbox);
84
-
85
- jQuery("#wd-" + prefix + "-deactivate").hide();
86
- jQuery("#wd-" + prefix + "-submit-and-deactivate").show();
87
-
88
- });
89
- jQuery(document).on("keyup", "[name=" + prefix + "_additional_details]", function(){
90
- if(jQuery(this).val().trim() || jQuery("[name=" + prefix + "_reasons]:checked").length > 0){
91
- jQuery("#wd-" + prefix + "-deactivate").hide();
92
- jQuery("#wd-" + prefix + "-submit-and-deactivate").show();
93
- }
94
- else{
95
- jQuery("#wd-" + prefix + "-deactivate").show();
96
- jQuery("#wd-" + prefix + "-submit-and-deactivate").hide();
97
- }
98
-
99
- });
100
-
101
- jQuery(document).on("change", "[name=" + prefix + "_agree_with_pp]", function () {
102
- if(jQuery(this).prop('checked')){
103
- jQuery(".wd-" + prefix + "-deactivate").removeClass('button-primary-disabled');
104
- agree_with_pp = true;
105
- }else{
106
- jQuery(".wd-" + prefix + "-deactivate").addClass('button-primary-disabled');
107
- agree_with_pp = false;
108
- }
109
- });
110
-
111
- jQuery(document).on("click", ".wd-" + prefix + "-deactivate", function(e){
112
-
113
- var data_val = jQuery(this).data('val');
114
- var checkbox = jQuery("#" + prefix + "_agree_with_pp");
115
-
116
-
117
- if (data_val !== 1 && (checkbox.length === 0 || checkbox.prop('checked') === false)) {
118
- return false;
119
- }
120
-
121
- jQuery(".wd-deactivate-popup-opacity-" + prefix).show();
122
- if(jQuery(this).hasClass("wd-clicked") == false){
123
- jQuery(this).addClass("wd-clicked");
124
- jQuery("[name=" + prefix + "_submit_and_deactivate]").val(jQuery(this).attr("data-val"));
125
- jQuery("#" + prefix + "_deactivate_form").submit();
126
- }
127
- return false;
128
- });
129
-
130
- jQuery(document).on("click", ".wd-" + prefix + "-cancel, .wd-opacity, .wd-deactivate-popup-close-btn", function(){
131
- jQuery(".wd-" + prefix + "-opacity").hide();
132
- jQuery(".wd-" + prefix + "-deactivate-popup").hide();
133
- reset_popup();
134
-
135
- return false;
136
- });
137
-
138
- function reset_popup() {
139
- jQuery("." + prefix + "_additional_details_wrap").html("");
140
- jQuery(".wd-" + prefix + "-deactivate-popup").removeClass("wd-popup-active1 wd-popup-active2 wd-popup-active3 wd-popup-active4");
141
-
142
- jQuery("#wd-" + prefix + "-deactivate").removeClass("button-primary-disabled");
143
- jQuery("#wd-" + prefix + "-deactivate").show();
144
- jQuery("#wd-" + prefix + "-submit-and-deactivate").hide();
145
- jQuery('#' + prefix + '_deactivate_form input[name="' + prefix + '_reasons' + '"]').prop('checked', false);
146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
 
149
  }
150
 
19
  ////////////////////////////////////////////////////////////////////////////////////////
20
  // Public Methods //
21
  ////////////////////////////////////////////////////////////////////////////////////////
22
+ function wdReady( prefix ) {
23
+
24
+ var agree_with_pp = false;
25
+ reset_popup();
26
+ jQuery( document ).on( "click", "." + window[prefix + "WDDeactivateVars"].deactivate_class, function () {
27
+ agree_with_pp = false;
28
+ if ( !jQuery( '#wd-' + prefix + '-submit-and-deactivate' ).hasClass( 'button-primary-disabled' ) ) {
29
+ jQuery( '#wd-' + prefix + '-submit-and-deactivate' ).addClass( 'button-primary-disabled' )
30
+ }
31
+ jQuery( ".wd-" + prefix + "-opacity" ).show();
32
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).show();
33
+ if ( jQuery( this ).attr( "data-uninstall" ) == "1" ) {
34
+ btnVal = 2;
35
+ }
36
+
37
+ return false;
38
+ } );
39
+
40
+ jQuery( document ).on( "change", "[name=" + prefix + "_reasons]", function () {
41
+ var disabled_class = ( agree_with_pp === false ) ? "button-primary-disabled" : "";
42
+
43
+ jQuery( "." + prefix + "_additional_details_wrap" ).html( "" );
44
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).removeClass( "wd-popup-active1 wd-popup-active2 wd-popup-active3 wd-popup-active4" );
45
+ if ( jQuery( this ).val() == "reason_plugin_is_hard_to_use_technical_problems" ) {
46
+
47
+ additionalInfo = '<div class="wd-additional-active"><div><strong>Please describe your issue.</strong></div><br>' +
48
+ '<textarea name="' + prefix + '_additional_details" rows = "4"></textarea><br>' +
49
+ '<div>Our support will contact <input type="text" name="' + prefix + '_email" value="' + window[prefix + "WDDeactivateVars"].email + '"> shortly.</div>' +
50
+ '<br><div><button class="button button-primary ' + disabled_class + ' wd-' + prefix + '-deactivate" data-val="' + btnVal + '">Submit support ticket</button></div></div>';
51
+ jQuery( "." + prefix + "_additional_details_wrap" ).append( additionalInfo );
52
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).addClass( "wd-popup-active1" );
53
+
54
+ }
55
+ else if ( jQuery( this ).val() == "reason_free_version_limited" ) {
56
+ additionalInfo = '<div class="wd-additional-active">' +
57
+ '<div><strong>We believe our premium version will fit your needs.</strong></div>' +
58
+ '<div><a href="' + window[prefix + "WDDeactivateVars"].plugin_wd_url + '" target="_blank">Try with 30 day money back guarantee.</a></div>';
59
+
60
+ jQuery( "." + prefix + "_additional_details_wrap" ).append( additionalInfo );
61
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).addClass( "wd-popup-active2" );
62
+ }
63
+ else if ( jQuery( this ).val() == "reason_premium_expensive" ) {
64
+ additionalInfo = '<div class="wd-additional-active">' +
65
+ '<div><strong>We have a special offer for you.</strong></div>' +
66
+ '<div>Submit this form to get the offer to <input type="text" name="' + prefix + '_email" value="' + window[prefix + "WDDeactivateVars"].email + '"></div>' +
67
+ '<br><div><button class="button button-primary ' + disabled_class + ' wd-' + prefix + '-deactivate" data-val="' + btnVal + '">Submit</button></div></div>';
68
+
69
+ jQuery( "." + prefix + "_additional_details_wrap" ).append( additionalInfo );
70
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).addClass( "wd-popup-active3" );
71
+ } else {
72
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).addClass( "wd-popup-active4" );
73
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
+ var checked = ( agree_with_pp === true ) ? "checked" : "";
76
+ var agree_checkbox =
77
+ "<div style='margin-top: 5px;'>" +
78
+ "<input type='checkbox' " + checked + " name='" + prefix + "_agree_with_pp" + "' id='" + prefix + "_agree_with_pp" + "'/>" +
79
+ "By submitting this form your email and website URL will be sent to Web-Dorado. Click the checkbox if you consent to usage of mentioned data by Web-Dorado in accordance with our <a target='_blank' href='https://web-dorado.com/web-dorado-privacy-statement.html'>Privacy Policy</a>."+
80
+ "</div>";
81
+ jQuery( "." + prefix + "_additional_details_wrap" ).prepend( agree_checkbox );
82
+
83
+ jQuery( "#wd-" + prefix + "-submit-and-deactivate" ).show();
84
+ } );
85
+ jQuery( document ).on( "keyup", "[name=" + prefix + "_additional_details]", function () {
86
+ if ( jQuery( this ).val().trim() || jQuery( "[name=" + prefix + "_reasons]:checked" ).length > 0 ) {
87
+ jQuery( "#wd-" + prefix + "-submit-and-deactivate" ).show();
88
  }
89
+ else {
90
+ jQuery( "#wd-" + prefix + "-submit-and-deactivate" ).hide();
91
+ }
92
+ } );
93
+
94
+ jQuery( document ).on( "change", "[name=" + prefix + "_agree_with_pp]", function () {
95
+ if ( jQuery( this ).prop( 'checked' ) ) {
96
+ jQuery( ".wd-" + prefix + "-deactivate" ).removeClass( 'button-primary-disabled' );
97
+ agree_with_pp = true;
98
+ } else {
99
+ jQuery( ".wd-" + prefix + "-deactivate" ).addClass( 'button-primary-disabled' );
100
+ agree_with_pp = false;
101
+ }
102
+ } );
103
+
104
+ jQuery( document ).on( "click", ".wd-" + prefix + "-deactivate", function ( e ) {
105
+ var data_val = jQuery( this ).data( 'val' );
106
+ var checkbox = jQuery( "#" + prefix + "_agree_with_pp" );
107
+
108
+ if ( data_val !== 1 && ( checkbox.length === 0 || checkbox.prop( 'checked' ) === false ) ) {
109
+ return false;
110
+ }
111
+
112
+ jQuery( ".wd-deactivate-popup-opacity-" + prefix ).show();
113
+ if ( jQuery( this ).hasClass( "wd-clicked" ) == false ) {
114
+ jQuery( this ).addClass( "wd-clicked" );
115
+ jQuery( "[name=" + prefix + "_submit_and_deactivate]" ).val( jQuery( this ).attr( "data-val" ) );
116
+ jQuery( "#" + prefix + "_deactivate_form" ).submit();
117
+ }
118
+ return false;
119
+ } );
120
+
121
+ jQuery( document ).on( "click", ".wd-" + prefix + "-cancel, .wd-opacity, .wd-deactivate-popup-close-btn", function () {
122
+ jQuery( ".wd-" + prefix + "-opacity" ).hide();
123
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).hide();
124
+ reset_popup();
125
+
126
+ return false;
127
+ } );
128
+
129
+ function reset_popup() {
130
+ jQuery( "." + prefix + "_additional_details_wrap" ).html( "" );
131
+ jQuery( ".wd-" + prefix + "-deactivate-popup" ).removeClass( "wd-popup-active1 wd-popup-active2 wd-popup-active3 wd-popup-active4" );
132
+
133
+ jQuery( "#wd-" + prefix + "-submit-and-deactivate" ).hide();
134
+ jQuery( '#' + prefix + '_deactivate_form input[name="' + prefix + '_reasons' + '"]' ).prop( 'checked', false );
135
+ }
136
 
137
  }
138
 
wd/templates/display_deactivation_popup.php CHANGED
@@ -19,8 +19,8 @@
19
  <div class="<?php echo $wd_options->prefix; ?>_additional_details_wrap"></div>
20
  </div>
21
  <div class="wd-btns">
22
- <a href="<?php echo $deactivate_url; ?>" data-val="1" class="button button-primary button-close wd-<?php echo $wd_options->prefix; ?>-deactivate" id="wd-<?php echo $wd_options->prefix; ?>-deactivate"><?php _e( "Skip and Deactivate" , $wd_options->prefix ); ?></a>
23
- <a href="<?php echo $deactivate_url; ?>" data-val="2" class="button button-primary button-primary-disabled button-close wd-<?php echo $wd_options->prefix; ?>-deactivate" id="wd-<?php echo $wd_options->prefix; ?>-submit-and-deactivate" style="display:none;"><?php _e( "Submit and Deactivate" , $wd_options->prefix ); ?></a>
24
  </div>
25
  <input type="hidden" name="<?php echo $wd_options->prefix . "_submit_and_deactivate"; ?>" value="" >
26
  <?php wp_nonce_field( $wd_options->prefix . '_save_form', $wd_options->prefix . '_save_form_fild'); ?>
19
  <div class="<?php echo $wd_options->prefix; ?>_additional_details_wrap"></div>
20
  </div>
21
  <div class="wd-btns">
22
+ <a href="<?php echo $deactivate_url; ?>" data-val="1" class="button button-secondary button-close" id="wd-<?php echo $wd_options->prefix; ?>-deactivate"><?php _e( "Skip and Deactivate" , $wd_options->prefix ); ?></a>
23
+ <a href="<?php echo $deactivate_url; ?>" data-val="2" class="button button-primary button-primary-disabled button-close wd-<?php echo $wd_options->prefix; ?>-deactivate" id="wd-<?php echo $wd_options->prefix; ?>-submit-and-deactivate"><?php _e( "Submit and Deactivate" , $wd_options->prefix ); ?></a>
24
  </div>
25
  <input type="hidden" name="<?php echo $wd_options->prefix . "_submit_and_deactivate"; ?>" value="" >
26
  <?php wp_nonce_field( $wd_options->prefix . '_save_form', $wd_options->prefix . '_save_form_fild'); ?>