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

Version Description

bug in address field fixed

Download this release

Release Info

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

Code changes from version 1.7.32 to 1.7.33

admin/controllers/FMControllerExtensions_fm.php ADDED
@@ -0,0 +1 @@
 
0
  ////////////////////////////////////////////////////////////////////////////////////////
1
  // Events //
2
  ////////////////////////////////////////////////////////////////////////////////////////
3
  ////////////////////////////////////////////////////////////////////////////////////////
4
  // Constants //
5
  ////////////////////////////////////////////////////////////////////////////////////////
6
  ////////////////////////////////////////////////////////////////////////////////////////
7
  // Variables //
8
  ////////////////////////////////////////////////////////////////////////////////////////
9
  ////////////////////////////////////////////////////////////////////////////////////////
10
  // Constructor & Destructor //
11
  ////////////////////////////////////////////////////////////////////////////////////////
12
  public function __construct() {
13
  }
14
  ////////////////////////////////////////////////////////////////////////////////////////
15
  // Public Methods //
16
  ////////////////////////////////////////////////////////////////////////////////////////
17
  public function execute() {
18
  $task = ((isset($_POST['task'])) ? esc_html(stripslashes($_POST['task'])) : '');
19
  if (method_exists($this, $task)) {
20
  $this->$task($id);
21
  }
22
  else {
23
  $this->display();
24
  }
25
  }
26
  public function display() {
27
  require_once WD_FM_DIR . "/admin/models/FMModelExtensions_fm.php";
28
  $model = new FMModelExtensions_fm();
29
  require_once WD_FM_DIR . "/admin/views/FMViewExtensions_fm.php";
30
  $view = new FMViewExtensions_fm($model);
31
  $view->display();
32
  }
33
  ////////////////////////////////////////////////////////////////////////////////////////
34
  // Getters & Setters //
35
  ////////////////////////////////////////////////////////////////////////////////////////
36
  ////////////////////////////////////////////////////////////////////////////////////////
37
  // Private Methods //
38
  ////////////////////////////////////////////////////////////////////////////////////////
39
  ////////////////////////////////////////////////////////////////////////////////////////
40
  // Listeners //
41
  ////////////////////////////////////////////////////////////////////////////////////////
1
+ <?php
2
  ////////////////////////////////////////////////////////////////////////////////////////
3
  // Events //
4
  ////////////////////////////////////////////////////////////////////////////////////////
5
  ////////////////////////////////////////////////////////////////////////////////////////
6
  // Constants //
7
  ////////////////////////////////////////////////////////////////////////////////////////
8
  ////////////////////////////////////////////////////////////////////////////////////////
9
  // Variables //
10
  ////////////////////////////////////////////////////////////////////////////////////////
11
  ////////////////////////////////////////////////////////////////////////////////////////
12
  // Constructor & Destructor //
13
  ////////////////////////////////////////////////////////////////////////////////////////
14
  public function __construct() {
15
  }
16
  ////////////////////////////////////////////////////////////////////////////////////////
17
  // Public Methods //
18
  ////////////////////////////////////////////////////////////////////////////////////////
19
  public function execute() {
20
  $task = ((isset($_POST['task'])) ? esc_html(stripslashes($_POST['task'])) : '');
21
  if (method_exists($this, $task)) {
22
  $this->$task($id);
23
  }
24
  else {
25
  $this->display();
26
  }
27
  }
28
  public function display() {
29
  require_once WD_FM_DIR . "/admin/models/FMModelExtensions_fm.php";
30
  $model = new FMModelExtensions_fm();
31
  require_once WD_FM_DIR . "/admin/views/FMViewExtensions_fm.php";
32
  $view = new FMViewExtensions_fm($model);
33
  $view->display();
34
  }
35
  ////////////////////////////////////////////////////////////////////////////////////////
36
  // Getters & Setters //
37
  ////////////////////////////////////////////////////////////////////////////////////////
38
  ////////////////////////////////////////////////////////////////////////////////////////
39
  // Private Methods //
40
  ////////////////////////////////////////////////////////////////////////////////////////
41
  ////////////////////////////////////////////////////////////////////////////////////////
42
  // Listeners //
43
  ////////////////////////////////////////////////////////////////////////////////////////
admin/controllers/FMControllerFeatured_plugins_fm.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FMControllerFeatured_plugins_fm {
4
+ ////////////////////////////////////////////////////////////////////////////////////////
5
+ // Events //
6
+ ////////////////////////////////////////////////////////////////////////////////////////
7
+ ////////////////////////////////////////////////////////////////////////////////////////
8
+ // Constants //
9
+ ////////////////////////////////////////////////////////////////////////////////////////
10
+ ////////////////////////////////////////////////////////////////////////////////////////
11
+ // Variables //
12
+ ////////////////////////////////////////////////////////////////////////////////////////
13
+ ////////////////////////////////////////////////////////////////////////////////////////
14
+ // Constructor & Destructor //
15
+ ////////////////////////////////////////////////////////////////////////////////////////
16
+ public function __construct() {
17
+ }
18
+ ////////////////////////////////////////////////////////////////////////////////////////
19
+ // Public Methods //
20
+ ////////////////////////////////////////////////////////////////////////////////////////
21
+ public function execute() {
22
+ $task = ((isset($_POST['task'])) ? esc_html(stripslashes($_POST['task'])) : '');
23
+ if (method_exists($this, $task)) {
24
+ $this->$task($id);
25
+ }
26
+ else {
27
+ $this->display();
28
+ }
29
+ }
30
+
31
+ public function display() {
32
+ require_once WD_FM_DIR . "/admin/models/FMModelFeatured_plugins_fm.php";
33
+ $model = new FMModelFeatured_plugins_fm();
34
+
35
+ require_once WD_FM_DIR . "/admin/views/FMViewFeatured_plugins_fm.php";
36
+ $view = new FMViewFeatured_plugins_fm($model);
37
+ $view->display();
38
+ }
39
+
40
+ ////////////////////////////////////////////////////////////////////////////////////////
41
+ // Getters & Setters //
42
+ ////////////////////////////////////////////////////////////////////////////////////////
43
+ ////////////////////////////////////////////////////////////////////////////////////////
44
+ // Private Methods //
45
+ ////////////////////////////////////////////////////////////////////////////////////////
46
+ ////////////////////////////////////////////////////////////////////////////////////////
47
+ // Listeners //
48
+ ////////////////////////////////////////////////////////////////////////////////////////
49
+ }
admin/models/FMModelExtensions_fm.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FMModelExtensions_fm {
4
+ ////////////////////////////////////////////////////////////////////////////////////////
5
+ // Events //
6
+ ////////////////////////////////////////////////////////////////////////////////////////
7
+ ////////////////////////////////////////////////////////////////////////////////////////
8
+ // Constants //
9
+ ////////////////////////////////////////////////////////////////////////////////////////
10
+ ////////////////////////////////////////////////////////////////////////////////////////
11
+ // Variables //
12
+ ////////////////////////////////////////////////////////////////////////////////////////
13
+ ////////////////////////////////////////////////////////////////////////////////////////
14
+ // Constructor & Destructor //
15
+ ////////////////////////////////////////////////////////////////////////////////////////
16
+ public function __construct() {
17
+ }
18
+ ////////////////////////////////////////////////////////////////////////////////////////
19
+ // Public Methods //
20
+ ////////////////////////////////////////////////////////////////////////////////////////
21
+ ////////////////////////////////////////////////////////////////////////////////////////
22
+ // Getters & Setters //
23
+ ////////////////////////////////////////////////////////////////////////////////////////
24
+ ////////////////////////////////////////////////////////////////////////////////////////
25
+ // Private Methods //
26
+ ////////////////////////////////////////////////////////////////////////////////////////
27
+ ////////////////////////////////////////////////////////////////////////////////////////
28
+ // Listeners //
29
+ ////////////////////////////////////////////////////////////////////////////////////////
30
+ }
admin/models/FMModelFeatured_plugins_fm.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FMModelFeatured_plugins_fm {
4
+ ////////////////////////////////////////////////////////////////////////////////////////
5
+ // Events //
6
+ ////////////////////////////////////////////////////////////////////////////////////////
7
+ ////////////////////////////////////////////////////////////////////////////////////////
8
+ // Constants //
9
+ ////////////////////////////////////////////////////////////////////////////////////////
10
+ ////////////////////////////////////////////////////////////////////////////////////////
11
+ // Variables //
12
+ ////////////////////////////////////////////////////////////////////////////////////////
13
+ ////////////////////////////////////////////////////////////////////////////////////////
14
+ // Constructor & Destructor //
15
+ ////////////////////////////////////////////////////////////////////////////////////////
16
+ public function __construct() {
17
+ }
18
+ ////////////////////////////////////////////////////////////////////////////////////////
19
+ // Public Methods //
20
+ ////////////////////////////////////////////////////////////////////////////////////////
21
+ ////////////////////////////////////////////////////////////////////////////////////////
22
+ // Getters & Setters //
23
+ ////////////////////////////////////////////////////////////////////////////////////////
24
+ ////////////////////////////////////////////////////////////////////////////////////////
25
+ // Private Methods //
26
+ ////////////////////////////////////////////////////////////////////////////////////////
27
+ ////////////////////////////////////////////////////////////////////////////////////////
28
+ // Listeners //
29
+ ////////////////////////////////////////////////////////////////////////////////////////
30
+ }
admin/views/FMViewExtensions_fm.php ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FMViewExtensions_fm {
4
+ ////////////////////////////////////////////////////////////////////////////////////////
5
+ // Events //
6
+ ////////////////////////////////////////////////////////////////////////////////////////
7
+ ////////////////////////////////////////////////////////////////////////////////////////
8
+ // Constants //
9
+ ////////////////////////////////////////////////////////////////////////////////////////
10
+ ////////////////////////////////////////////////////////////////////////////////////////
11
+ // Variables //
12
+ ////////////////////////////////////////////////////////////////////////////////////////
13
+ private $model;
14
+
15
+
16
+ ////////////////////////////////////////////////////////////////////////////////////////
17
+ // Constructor & Destructor //
18
+ ////////////////////////////////////////////////////////////////////////////////////////
19
+ public function __construct($model) {
20
+ $this->model = $model;
21
+ }
22
+ ////////////////////////////////////////////////////////////////////////////////////////
23
+ // Public Methods //
24
+ ////////////////////////////////////////////////////////////////////////////////////////
25
+ public function display() {
26
+ ?>
27
+ <div id="main_featured_plugins_page">
28
+ <table align="center" width="90%" style="margin-top: 0px;border-bottom: rgb(111, 111, 111) solid 2px;">
29
+ <tr>
30
+ <td colspan="2" style="height: 70px;"><h3 style="margin: 0px;font-family:Segoe UI;padding-bottom: 15px;color: rgb(111, 111, 111); font-size:18pt;">Form Maker Plugins</h3></td>
31
+ <td></td>
32
+ </tr>
33
+ </table>
34
+ <form method="post">
35
+ <ul id="featured-plugins-list">
36
+ <li class="form_maker_import">
37
+ <div class="product">
38
+ <div class="title">
39
+ <strong class="heading">Form Maker Export/Import</strong>
40
+ </div>
41
+ </div>
42
+ <div class="description">
43
+ <p>Form Maker Export/Import WordPress plugin allows exporting and importing forms with/without submissions.</p>
44
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-form/export-import.html" class="download">Download</a>
45
+ </div>
46
+ </li>
47
+ </ul>
48
+ </form>
49
+ </div>
50
+ <?php
51
+ }
52
+ ////////////////////////////////////////////////////////////////////////////////////////
53
+ // Getters & Setters //
54
+ ////////////////////////////////////////////////////////////////////////////////////////
55
+ ////////////////////////////////////////////////////////////////////////////////////////
56
+ // Private Methods //
57
+ ////////////////////////////////////////////////////////////////////////////////////////
58
+ ////////////////////////////////////////////////////////////////////////////////////////
59
+ // Listeners //
60
+ ////////////////////////////////////////////////////////////////////////////////////////
61
+ }
admin/views/FMViewFeatured_plugins_fm.php ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FMViewFeatured_plugins_fm {
4
+ ////////////////////////////////////////////////////////////////////////////////////////
5
+ // Events //
6
+ ////////////////////////////////////////////////////////////////////////////////////////
7
+ ////////////////////////////////////////////////////////////////////////////////////////
8
+ // Constants //
9
+ ////////////////////////////////////////////////////////////////////////////////////////
10
+ ////////////////////////////////////////////////////////////////////////////////////////
11
+ // Variables //
12
+ ////////////////////////////////////////////////////////////////////////////////////////
13
+ private $model;
14
+
15
+
16
+ ////////////////////////////////////////////////////////////////////////////////////////
17
+ // Constructor & Destructor //
18
+ ////////////////////////////////////////////////////////////////////////////////////////
19
+ public function __construct($model) {
20
+ $this->model = $model;
21
+ }
22
+ ////////////////////////////////////////////////////////////////////////////////////////
23
+ // Public Methods //
24
+ ////////////////////////////////////////////////////////////////////////////////////////
25
+ public function display() {
26
+ ?>
27
+ <div id="main_featured_plugins_page">
28
+ <table align="center" width="90%" style="margin-top: 0px;border-bottom: rgb(111, 111, 111) solid 2px;">
29
+ <tr>
30
+ <td colspan="2" style="height: 70px;"><h3 style="margin: 0px;font-family:Segoe UI;padding-bottom: 15px;color: rgb(111, 111, 111); font-size:18pt;">Featured Plugins</h3></td>
31
+ <td></td>
32
+ </tr>
33
+ </table>
34
+ <form method="post">
35
+ <ul id="featured-plugins-list">
36
+ <li class="photo-gallery">
37
+ <div class="product">
38
+ <div class="title">
39
+ <strong class="heading">Photo Gallery</strong>
40
+ <p>WordPress Photo Gallery plugin</p>
41
+ </div>
42
+ </div>
43
+ <div class="description">
44
+ <p>Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.
45
+ It allows having different image galleries for your posts and pages, as well as different widgets.</p>
46
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-photo-gallery-plugin.html" class="download">Download</a>
47
+ </div>
48
+ </li>
49
+ <li class="spider-calendar">
50
+ <div class="product">
51
+ <div class="title">
52
+ <strong class="heading">Spider Calendar</strong>
53
+ <p>WordPress event calendar plugin</p>
54
+ </div>
55
+ </div>
56
+ <div class="description">
57
+ <p>Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.</p>
58
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-calendar.html" class="download">Download</a>
59
+ </div>
60
+ </li>
61
+ <li class="catalog">
62
+ <div class="product">
63
+ <div class="title">
64
+ <strong class="heading">Spider Catalog</strong>
65
+ <p>WordPress product catalog plugin</p>
66
+ </div>
67
+ </div>
68
+ <div class="description">
69
+ <p>Spider Catalog for WordPress is a convenient tool for organizing the products represented on your website into catalogs.</p>
70
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-catalog.html" class="download">Download</a>
71
+ </div>
72
+ </li>
73
+ <li class="player">
74
+ <div class="product">
75
+ <div class="title">
76
+ <strong class="heading">Video Player</strong>
77
+ <p>WordPress Video player plugin</p>
78
+ </div>
79
+ </div>
80
+ <div class="description">
81
+ <p>Spider Video Player for WordPress is a Flash & HTML5 video player plugin that allows you to easily add videos to your website with the possibility</p>
82
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-player.html" class="download">Download</a>
83
+ </div>
84
+ </li>
85
+ <li class="contacts">
86
+ <div class="product">
87
+ <div class="title">
88
+ <strong class="heading">Spider Contacts</strong>
89
+ <p>Wordpress staff list plugin</p>
90
+ </div>
91
+ </div>
92
+ <div class="description">
93
+ <p>Spider Contacts helps you to display information about the group of people more intelligible, effective and convenient.</p>
94
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-contacts-plugin.html" class="download">Download</a>
95
+ </div>
96
+ </li>
97
+ <li class="facebook">
98
+ <div class="product">
99
+ <div class="title">
100
+ <strong class="heading">Spider Facebook</strong>
101
+ <p>WordPress Facebook plugin</p>
102
+ </div>
103
+ </div>
104
+ <div class="description">
105
+ <p>Spider Facebook is a WordPress integration tool for Facebook.It includes all the available Facebook social plugins and widgets to be added to your web</p>
106
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-facebook.html" class="download">Download</a>
107
+ </div>
108
+ </li>
109
+ <li class="twitter-widget">
110
+ <div class="product">
111
+ <div class="title">
112
+ <strong class="heading">Widget Twitter</strong>
113
+ <p>WordPress Widget Twitter plugin</p>
114
+ </div>
115
+ </div>
116
+ <div class="description">
117
+ <p>The Widget Twitter plugin lets you to fully integrate your WordPress site with your Twitter account.</p>
118
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-twitter-integration-plugin.html" class="download">Download</a>
119
+ </div>
120
+ </li>
121
+ <li class="faq">
122
+ <div class="product">
123
+ <div class="title">
124
+ <strong class="heading">Spider FAQ</strong>
125
+ <p>WordPress FAQ Plugin</p>
126
+ </div>
127
+ </div>
128
+ <div class="description">
129
+ <p>The Spider FAQ WordPress plugin is for creating an FAQ (Frequently Asked Questions) section for your website.</p>
130
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-faq-plugin.html" class="download">Download</a>
131
+ </div>
132
+ </li>
133
+ <li class="zoom">
134
+ <div class="product">
135
+ <div class="title">
136
+ <strong class="heading">Zoom</strong>
137
+ <p>WordPress text zoom plugin</p>
138
+ </div>
139
+ </div>
140
+ <div class="description">
141
+ <p>Zoom enables site users to resize the predefined areas of the web site.</p>
142
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-zoom.html" class="download">Download</a>
143
+ </div>
144
+ </li>
145
+ <li class="flash-calendar">
146
+ <div class="product">
147
+ <div class="title">
148
+ <strong class="heading">Flash Calendar</strong>
149
+ <p>WordPress flash calendar plugin</p>
150
+ </div>
151
+ </div>
152
+ <div class="description">
153
+ <p>Spider Flash Calendar is a highly configurable Flash calendar plugin which allows you to have multiple organized events.</p>
154
+ <a target="_blank" href="http://web-dorado.com/products/wordpress-events-calendar.html" class="download">Download</a>
155
+ </div>
156
+ </li>
157
+ </ul>
158
+ </form>
159
+ </div >
160
+ <?php
161
+ }
162
+ ////////////////////////////////////////////////////////////////////////////////////////
163
+ // Getters & Setters //
164
+ ////////////////////////////////////////////////////////////////////////////////////////
165
+ ////////////////////////////////////////////////////////////////////////////////////////
166
+ // Private Methods //
167
+ ////////////////////////////////////////////////////////////////////////////////////////
168
+ ////////////////////////////////////////////////////////////////////////////////////////
169
+ // Listeners //
170
+ ////////////////////////////////////////////////////////////////////////////////////////
171
+ }
admin/views/FMViewManage_fm.php CHANGED
@@ -451,7 +451,7 @@ class FMViewManage_fm {
451
 
452
  <div class="formmaker_table" width="100%">
453
  <div style="float: left; text-align: center;"><br />
454
- <img src="<?php echo WD_FM_URL . '/images/FormMaker.png'; ?>" /><br /><br />
455
  <img src="<?php echo WD_FM_URL . '/images/logo.png'; ?>" />
456
  </div>
457
  <div style="float:right">
451
 
452
  <div class="formmaker_table" width="100%">
453
  <div style="float: left; text-align: center;"><br />
454
+ <img src="<?php echo WD_FM_URL . '/images/formmaker.png'; ?>" /><br /><br />
455
  <img src="<?php echo WD_FM_URL . '/images/logo.png'; ?>" />
456
  </div>
457
  <div style="float:right">
css/form_maker_featured_plugins.css ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #main_featured_plugins_page #featured-plugins-list {
2
+ position:relative;
3
+ margin:0px auto;
4
+ width:90%;
5
+ height:auto;
6
+ display:table;
7
+ list-style:none;
8
+ }
9
+
10
+ #main_featured_plugins_page #featured-plugins-list li {
11
+ display:block;
12
+ height:113px;
13
+ padding:15px 5% 15px 5%;
14
+ margin:0px 0px 12px 0px;
15
+ background:#ededed;
16
+ }
17
+
18
+ #main_featured_plugins_page #featured-plugins-list li .product {
19
+ position:relative;
20
+ float:left;
21
+ width:35%;
22
+ height:113px;
23
+ }
24
+
25
+ #main_featured_plugins_page #featured-plugins-list li .title {
26
+ float:left;
27
+ height:113px;
28
+ width:90%;
29
+ margin:0px 0px 0px 109px;
30
+ background:#cacaca;
31
+ border-top-right-radius:3px;
32
+ border-bottom-right-radius:3px;
33
+ }
34
+
35
+ #main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url("images/photo-gallery.jpg") left center no-repeat;}
36
+ #main_featured_plugins_page #featured-plugins-list li.twitter-widget .product {background:url("images/twitter-widget.jpg") left center no-repeat;}
37
+ #main_featured_plugins_page #featured-plugins-list li.form-maker .product {background:url("images/form.jpg") left center no-repeat;}
38
+ #main_featured_plugins_page #featured-plugins-list li.catalog .product {background:url("images/catalog.jpg") left center no-repeat;}
39
+ #main_featured_plugins_page #featured-plugins-list li.contact-maker .product {background:url("images/contact.maker.jpg") left center no-repeat;}
40
+ #main_featured_plugins_page #featured-plugins-list li.contacts .product {background:url("images/contacts.jpg") left center no-repeat;}
41
+ #main_featured_plugins_page #featured-plugins-list li.facebook .product {background:url("images/facebook.jpg") left center no-repeat;}
42
+ #main_featured_plugins_page #featured-plugins-list li.faq .product {background:url("images/faq.jpg") left center no-repeat;}
43
+ #main_featured_plugins_page #featured-plugins-list li.flash-calendar .product {background:url("images/flash.calendar.jpg") left center no-repeat;}
44
+ #main_featured_plugins_page #featured-plugins-list li.folder-menu .product {background:url("images/folder.menu.jpg") left center no-repeat;}
45
+ #main_featured_plugins_page #featured-plugins-list li.player .product {background:url("images/player.jpg") left center no-repeat;}
46
+ #main_featured_plugins_page #featured-plugins-list li.spider-calendar .product {background:url("images/spider.calendar.jpg") left center no-repeat;}
47
+ #main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url("images/zoom.jpg") left center no-repeat;}
48
+
49
+ #main_featured_plugins_page #featured-plugins-list li.form_maker_import .product {
50
+ background: #cacaca url("images/form_make_import.png") left 11px no-repeat;
51
+ background-size: 100px 110px;
52
+ border-top-left-radius: 3px;
53
+ border-bottom-left-radius: 3px;
54
+ }
55
+
56
+ #main_featured_plugins_page #featured-plugins-list li .title .heading {
57
+ display:block;
58
+ position:relative;
59
+ font-size:24px;
60
+ color:#014f73;
61
+ margin:30px 0px -10px 20px;
62
+ line-height: 24px;
63
+ }
64
+
65
+ #main_featured_plugins_page #featured-plugins-list li .title p {
66
+ font-size:14px;
67
+ color:#444;
68
+ margin-left:20px;
69
+ }
70
+
71
+ #main_featured_plugins_page #featured-plugins-list li .description {
72
+ float:right;
73
+ width:50%;
74
+ height:113px;
75
+ }
76
+
77
+ #main_featured_plugins_page #featured-plugins-list li .description p {
78
+ text-align:right;
79
+ }
80
+
81
+ #main_featured_plugins_page #featured-plugins-list li .description a.download, #main_featured_plugins_page #featured-plugins-list li .description a.download:link, #main_featured_plugins_page #featured-plugins-list li .description a.download:visited {
82
+ display:block;
83
+ width:106px;
84
+ height:32px;
85
+ text-indent:-9999px;
86
+ background:url(images/download.jpg) left top no-repeat;
87
+ float:right;
88
+ }
css/images/catalog.jpg ADDED
Binary file
css/images/contact.maker.jpg ADDED
Binary file
css/images/contacts.jpg ADDED
Binary file
css/images/download.jpg ADDED
Binary file
css/images/facebook.jpg ADDED
Binary file
css/images/faq.jpg ADDED
Binary file
css/images/flash.calendar.jpg ADDED
Binary file
css/images/folder.menu.jpg ADDED
Binary file
css/images/form_make_import.png ADDED
Binary file
css/images/photo-gallery.jpg ADDED
Binary file
css/images/player.jpg ADDED
Binary file
css/images/spider.calendar.jpg ADDED
Binary file
css/images/twitter-widget.jpg ADDED
Binary file
css/images/zoom.jpg ADDED
Binary file
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: http://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.32
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
3
  * Plugin Name: Form Maker
4
  * Plugin URI: http://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.33
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
frontend/views/FMViewForm_maker.php CHANGED
@@ -1573,7 +1573,7 @@ class FMViewForm_maker {
1573
  $check_js.='
1574
  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
1575
  {
1576
- if(jQuery("#wdform_'.$id1.'_street1'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_street2'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_city'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_state'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_postal'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_country'.$form_id.'").val()=="")
1577
  {
1578
  alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
1579
  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
1573
  $check_js.='
1574
  if(x.find(jQuery("div[wdid='.$id1.']")).length != 0 && x.find(jQuery("div[wdid='.$id1.']")).css("display") != "none")
1575
  {
1576
+ if(jQuery("#wdform_'.$id1.'_street1'.$form_id.'").val()=="" || (jQuery("#wdform_'.$id1.'_street1'.$form_id.'").val()=="" && jQuery("#wdform_'.$id1.'_street2'.$form_id.'").val()=="") || jQuery("#wdform_'.$id1.'_city'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_state'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_postal'.$form_id.'").val()=="" || jQuery("#wdform_'.$id1.'_country'.$form_id.'").val()=="")
1577
  {
1578
  alert("' .addslashes($label. ' ' . __('field is required.', 'form_maker')) . '");
1579
  old_bg=x.find(jQuery("div[wdid='.$id1.']")).css("background-color");
images/{FormMaker.png → formmaker.png} RENAMED
File without changes
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://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
5
  Requires at least: 3.4
6
  Tested up to: 4.1
7
- Stable tag: 1.7.32
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -277,8 +277,14 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
277
 
278
  == Changelog ==
279
 
 
 
 
 
 
 
280
  = 1.7.31 =
281
- Bug fixed: Hidden field save to DB.
282
  New: Drag and drop options in multiple, single choices and select box.
283
  New: Select options from database.
284
  New: Add image in email as image.
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
5
  Requires at least: 3.4
6
  Tested up to: 4.1
7
+ Stable tag: 1.7.33
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
277
 
278
  == Changelog ==
279
 
280
+ = 1.7.33 =
281
+ bug in address field fixed
282
+
283
+ = 1.7.32 =
284
+ bug fixed
285
+
286
  = 1.7.31 =
287
+ Bug fixed: Hidden field save to DB.
288
  New: Drag and drop options in multiple, single choices and select box.
289
  New: Select options from database.
290
  New: Add image in email as image.