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

Version Description

  • Fixed: Bug on Google reCapthcha.
  • Fixed: Bug on selecting options from database.
Download this release

Release Info

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

Code changes from version 1.13.34 to 1.13.35

admin/views/FMSelectDataFromDb.php CHANGED
@@ -513,7 +513,13 @@ class FMViewSelect_data_from_db extends FMAdminView {
513
  }
514
  }
515
  return false;
516
- }
 
 
 
 
 
 
517
 
518
  function gen_query() {
519
  query = '';
@@ -523,17 +529,18 @@ class FMViewSelect_data_from_db extends FMAdminView {
523
  op_val = '';
524
  for (i = 1; i < cond_id; i++) {
525
  if ( jQuery('#' + i).html() ) {
 
526
  if (jQuery('#op_' + i).val() == "%..%") {
527
- op_val = ' LIKE \'%' + jQuery('#val_' + i).val() + '%\'';
528
  }
529
- else if (jQuery('#op_' + i).val() == "..%") {
530
- op_val = ' LIKE \'' + jQuery('#val_' + i).val() + '%\'';
531
  }
532
  else if (jQuery('#op_' + i).val() == "%..") {
533
- op_val = ' LIKE \'%' + jQuery('#val_' + i).val() + '\'';
534
  }
535
  else {
536
- op_val = ' ' + jQuery('#op_' + i).val() + ' \'' + jQuery('#val_' + i).val() + '\'';
537
  }
538
  where += previous + ' `' + jQuery('#sel_' + i).val() + '`' + op_val;
539
  previous = ' ' + jQuery('#andor_' + i).val();
513
  }
514
  }
515
  return false;
516
+ }
517
+
518
+ function escape_quotes(text) {
519
+ return text
520
+ .replace(/"/g, "")
521
+ .replace(/'/g, "");
522
+ }
523
 
524
  function gen_query() {
525
  query = '';
529
  op_val = '';
530
  for (i = 1; i < cond_id; i++) {
531
  if ( jQuery('#' + i).html() ) {
532
+ val = escape_quotes(jQuery('#val_' + i).val());
533
  if (jQuery('#op_' + i).val() == "%..%") {
534
+ op_val = ' LIKE \'%' + val + '%\'';
535
  }
536
+ else if (jQuery('#op_' + i).val() == "..%") {
537
+ op_val = ' LIKE \'' + val + '%\'';
538
  }
539
  else if (jQuery('#op_' + i).val() == "%..") {
540
+ op_val = ' LIKE \'%' + val + '\'';
541
  }
542
  else {
543
+ op_val = ' ' + jQuery('#op_' + i).val() + ' \'' + val + '\'';
544
  }
545
  where += previous + ' `' + jQuery('#sel_' + i).val() + '`' + op_val;
546
  previous = ' ' + jQuery('#andor_' + i).val();
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://10web.io/plugins/wordpress-form-maker/?utm_source=form_maker&utm_medium=free_plugin
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.13.34
7
  * Author: 10Web Form Builder Team
8
  * Author URI: https://10web.io/plugins/?utm_source=form_maker&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -98,8 +98,8 @@ final class WDFM {
98
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
99
  $this->front_urls = $this->get_front_urls();
100
  $this->main_file = plugin_basename(__FILE__);
101
- $this->plugin_version = '1.13.34';
102
- $this->db_version = '2.13.34';
103
  $this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
104
  $this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
105
  $this->menu_slug = 'manage' . $this->menu_postfix;
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://10web.io/plugins/wordpress-form-maker/?utm_source=form_maker&utm_medium=free_plugin
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.13.35
7
  * Author: 10Web Form Builder Team
8
  * Author URI: https://10web.io/plugins/?utm_source=form_maker&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
98
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
99
  $this->front_urls = $this->get_front_urls();
100
  $this->main_file = plugin_basename(__FILE__);
101
+ $this->plugin_version = '1.13.35';
102
+ $this->db_version = '2.13.35';
103
  $this->menu_postfix = ($this->is_free == 2 ? '_fmc' : '_fm');
104
  $this->plugin_postfix = ($this->is_free == 2 ? '_fmc' : '');
105
  $this->menu_slug = 'manage' . $this->menu_postfix;
frontend/models/form_maker.php CHANGED
@@ -1231,7 +1231,7 @@ class FMModelForm_maker {
1231
  $_SESSION['error_or_no' . $id] = 1;
1232
  }
1233
  }
1234
- elseif ( isset($_POST["g-recaptcha-response"]) ) {
1235
  $privatekey = isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
1236
  $captcha = $_POST['g-recaptcha-response'];
1237
  $url = 'https://www.google.com/recaptcha/api/siteverify';
@@ -1253,7 +1253,7 @@ class FMModelForm_maker {
1253
  }
1254
  }
1255
  }
1256
- elseif ( isset($_POST["recaptcha_response" . $id]) ) {
1257
  // Build POST request:
1258
  $recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
1259
  $recaptcha_secret = isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
1231
  $_SESSION['error_or_no' . $id] = 1;
1232
  }
1233
  }
1234
+ elseif ( isset($_POST["g-recaptcha-response"]) && $_POST["g-recaptcha-response"] ) {
1235
  $privatekey = isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
1236
  $captcha = $_POST['g-recaptcha-response'];
1237
  $url = 'https://www.google.com/recaptcha/api/siteverify';
1253
  }
1254
  }
1255
  }
1256
+ elseif ( isset($_POST["recaptcha_response" . $id]) && $_POST["recaptcha_response" . $id] ) {
1257
  // Build POST request:
1258
  $recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify';
1259
  $recaptcha_secret = isset($fm_settings['private_key']) ? $fm_settings['private_key'] : '';
readme.txt CHANGED
@@ -1,1650 +1,1654 @@
1
- === Form Maker by 10Web - Mobile-Friendly Drag & Drop Contact Form Builder ===
2
- Contributors: webdorado,10web,wdsupport,formmakersupport
3
- Tags: form, forms, form builder, contact form, feedback, custom form, contact, web contact form, captcha, email, form manager, survey
4
- Requires at least: 4.6
5
- Tested up to: 5.4
6
- Stable tag: 1.13.34
7
- License: GPLv2 or later
8
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
-
10
- Form Maker is a user-friendly contact form builder that allows to create forms for any purpose, from a simple contact form to multi page survey forms
11
-
12
- == Description ==
13
-
14
- Form Maker is the leading drag & drop plugin for building forms of any complexity in just a few clicks.
15
-
16
- = Useful Links: =
17
- [Live Demo](https://demo.10web.io/form-maker/)
18
-
19
-
20
- [Demo Admin](https://admindemo.10web.io/?product_name=form-maker)
21
-
22
- [Premium Form Maker by 10Web](https://10web.io/plugins/wordpress-form-maker/)
23
-
24
- [Special Offer for all Premium Plugins](https://10web.io/plugins-bundle-pricing/)
25
-
26
- https://www.youtube.com/watch?v=vxxKfhxIS44
27
-
28
-
29
- Looking for the perfect form plugin that’ll save you time and effort?
30
-
31
- Is matching your website design with your forms difficult?
32
-
33
- Finding it hard to build lengthy and advanced forms?
34
-
35
-
36
- == Form Maker Features ==
37
-
38
- **Intuitive Interface**
39
- Drag and drop to build complex forms with just a few clicks.
40
-
41
- **Mobile-Friendly and Responsive**
42
- Your forms will look great on all resolutions and devices: mobile, tablet, and desktop.
43
-
44
- **Field Types**
45
- 43 different form field types to help you create just the form you need.
46
-
47
- **Embed Easily**
48
- Display your forms as popups, top bars or scroll boxes or embed them into blog posts.
49
-
50
- **Pre-built Templates**
51
- Pick from five form template options to save time.
52
-
53
- **Fully Customizable Themes**
54
- Use one of our fifteen beautiful themes to make your forms match website design.
55
-
56
- **Manage Submissions**
57
- Set automatic email replies, track and export all your entries, and more.
58
-
59
- **Protection from Spam**
60
- Block IPs and set captchas to avoid spam.
61
-
62
- **Receive Payments\***
63
- Get payments and donations using integrated PayPal and Stripe gateways.
64
-
65
- **Conditional Logic**
66
- Build forms with complex conditional logic.
67
-
68
- **Multi-Page Forms**
69
- Divide up lengthy forms into pages to provide better user experience.
70
-
71
- **File Upload\***
72
- Your users can upload files to your forms.
73
-
74
- _\* Premium version only_
75
-
76
-
77
-
78
- == Form Maker Extensions ==
79
- _[Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing)_
80
-
81
- **Save Form Progress**
82
- Your users can save unfinished entries and continue anytime.
83
-
84
- **Conditional Mailing**
85
- Send out emails to user groups based on submitted forms.
86
-
87
- **Export/Import**
88
- Export form entries and forms in the XML format and import them into another site afterwards.
89
-
90
- **Pushover**
91
- Get a notification on your phone whenever there is an entry submission.
92
-
93
- **Mailchimp Integration**
94
- Create Mailchimp signup forms and expand your lead list.
95
-
96
- **WordPress Registration**
97
- Build WP user registration forms and expand the user base of your site.
98
-
99
- **Post Generation**
100
- Use a form to invite your users to submit guest posts.
101
-
102
- **Dropbox Integration**
103
- Store attachments received from form entries in your Dropbox.
104
-
105
- **Google Drive Integration**
106
- Upload received form attachments straight to your Google Drive.
107
-
108
- **PDF Integration**
109
- Use content from submitted entries to create PDFs.
110
-
111
- **Stripe**
112
- Your users can make credit card payments via Stripe, and we’ll transfer them to your bank account automatically.
113
-
114
- **Calculator**
115
- Build forms that contain automatically calculated fields.
116
-
117
-
118
-
119
- Form Maker is a power-packed yet user-friendly form builder plugin. With an intuitive drag and drop interface, this plugin is the ultimate solution to help you create responsive contact Forms easily and in a timely manner. Add modern and functional questionnaires to your website with a few clicks. Using the plugin you can create forms for pretty much any purpose, from simple email form or contact form to multi-page application, registration survey and questionnaire with conditional fields, captcha protection, multiple choice questions and more. It will take you just a few clicks to create an email form and a couple of minutes to customize with the available themes, styling and display options.
120
-
121
-
122
- == World Class Customer Support ==
123
- * Low response time
124
- We always respond within a few hours.
125
- * Quick issue resolution
126
- Resolving an issue never takes more than 24 hours.
127
-
128
-
129
- == Just ask our users ==
130
-
131
- > I had tried several form plugins but I was always searching for a better one.
132
- > Then I stumbled Formmaker just by chance and thought to give a try.
133
- > I was thrilled to see its features. It has more than everything I expected. Very customizable and easy to use.
134
- > Now I don’t search for form plugin anymore
135
- > Lots of thanks to the developers of this plugin.
136
- > **by [@mayank0522](https://wordpress.org/support/topic/a-must-have-plugin-223/)**
137
-
138
-
139
- > If I could give this plugin more than 5 stars I would!
140
- > The level of control is extremely nice – even with the free version – though I quickly purchased the PRO version!
141
- > And the level of customer service in troubleshooting forum questions is incredible!
142
- > Very impressed with the plugin – but even more so with the way they interact with and help users get to what they need!
143
- > Great job guys!!
144
- > **by [@JonathanWilson99](https://wordpress.org/support/topic/amazing-form-plugin/)**
145
-
146
-
147
- > This is the best plugin for creating functional forms and very user friendly even for the none technical users.
148
- > Absolutely recommend everyone to use this one.
149
- > Thanks a lot guys!!!
150
- > **by [@denisecox](https://wordpress.org/support/topic/wonderful-form-builder-plugin/)**
151
-
152
- == Steps for creating a website form ==
153
- 1. Install Form Maker by 10Web.
154
- 2. Create a form in a few clicks.
155
- 3. Publish your form.
156
-
157
- **Benefits**
158
-
159
- * **Better communication between your visitors and you** - Contact forms serve as a communication tool between you and your site visitors, and make it easy to get/receive orders, requests, and inquiries. If you offer memberships, courses or trainings on your website, forms are an easy way to order, apply or register online.
160
- * **Valuable User/Customer Feedback** - You are what your user/customer thinks of you! The plugin lets you put together surveys and questionnaires and get feedback from your users/customers.
161
- * **One plugin, different purposes** - Whether you want to have a single form on the contact us page, or multiple, on different pages on your website, that's absolutely doable with this plugin. You can create unlimited number of different forms and display them using one of the available display options. Please note, that free version is limited to 7 form fields.
162
- * **Save time** - Plugin uses an intuitive drag and drop interface, which makes it easy to create contact forms and add/remove form fields.
163
- * **Add to the overall website design** - A well designed contact form can contribute to your website's overall look and feel. Customize its style and have it match with your website design.
164
- * **Improve accessibility** - Plugin provides four different display options, which make your contact forms easily accessible. Whether you want to embed the form into a post or a page, or have it follow the visitors as they scroll up and down, you have the option to do that.
165
-
166
-
167
- **What's in it**
168
-
169
- **MULTIPLE FORM FIELDS**
170
- Plugin comes with a myriad of field options to let you create high performing forms. The fields you can add include: text input, multiple and single choice fields, select box, submit and reset buttons, custom HTML, 3 types of captcha protection and many more. In addition to these fields, the Premium version of the plugin offers file upload, Google Maps, and payment fields with automatic PayPal integration or Stripe integration with an add on.
171
-
172
- **FOUR FORM DISPLAY OPTIONS**
173
- There are four display options in the plugin: Embedded, Pop-Up, Scroll-box, and Top-bar. Each of the display options has its own set of settings you can customize.
174
-
175
- **DRAG &amp; DROP**
176
- The intuitive drag-and-drop interface of the plugin makes it the most user-friendly form plugin for WordPress. Easily re-order the sequence of the fields or move them between columns, sections and pages, organizing your forms in no time.
177
-
178
- **15 CUSTOMIZABLE THEMES**
179
- Plugin comes with 15 fully customizable themes that you can apply to your forms. Under the theme options you can configure pretty much any setting of the theme, personalizing options for header, content, pagination, buttons and more. You can also create your own themes with your personal styling and features.
180
-
181
- **CUSTOM CSS EDITOR**
182
- You can use the custom CSS editor to give additional styling features to the forms.
183
-
184
- **CUSTOMIZABLE EMAILS**
185
- Send customized emails to your users as well as website administrators upon submission for any given form.
186
-
187
- **MANAGED SUBMISSIONS**
188
- View and manage the submissions for each web form. See number of entries, number of views, the conversion rate and more.
189
-
190
- **CONDITIONAL FIELDS**
191
- Conditional fields feature of the plugin lets you display/hide specific fields based on the user input. This is a great way to make your forms shorter and avoid receiving irrelevant information.
192
-
193
- **PRE-BUILD TEMPLATES**
194
- The plugin comes with 5 pre-built templates, which you can use as they are or customize to better fit your needs.
195
-
196
-
197
- **SETTINGS/CUSTOMIZATION**
198
- _\*Some customizations described here are available in Premium version. Please refer to feature summary for additional info._
199
-
200
- Form Maker plugin provides a full range of options and features you can tailor to your needs. Each of the forms you create will have its own set of form options and display settings. Under the options you can choose a theme for each custom web form, adjust email options, choose what happens after the user submits, set conditional logic, and choose one of the available payment options, such as PayPal and Stripe (Extension). Under the display settings you can adjust the options for each web form display type.
201
-
202
- The available themes are fully configurable, allowing you make the necessary adjustments to the header, content, input box, buttons, choices, pagination, and add custom CSS. You can change the header background color, adjust the parameters for title, description and header image,customize the parameters for buttons, adjust the settings for single and multiple choice questions, and many more. The changes you make to the settings will immediately be displayed in the form preview next to the settings box.
203
-
204
- With conditional fields option you can set to hide/show specific fields based on the selections your visitors make. You just choose the field you want to show or hide, then set the conditions based on which the field will appear or will be hidden. The plugin features a user-friendly interface, which makes it easy to create, style and customize the forms.
205
-
206
-
207
- **[Premium version adds](https://10web.io/plugins/wordpress-form-maker/)**
208
-
209
- * Unlimited fields in one form
210
- * File Upload field
211
- * PayPal Integration (Creating PayPal Forms for payments)
212
- * Stripe Integration (Creating Credit Card payment Forms) with Extension
213
- * Google Maps API Integration
214
- * Front-End Submissions
215
-
216
-
217
- == Privacy Notices ==
218
-
219
- Form Maker plugin does not collect and store any data of your users on 10Web's end. All data submitted by your website visitors is stored in your website database. With every form submission Form Maker plugin collects users' IP address and WordPress user ID for logged in users. From this perspective, you may be subject to GDPR compliance.
220
-
221
- Form Maker forms imply interaction between website visitors and website owner. As such you may publish forms that require input of Private data. You need to get explicit consent from your users to comply with GDPR. Under GDPR your users may request access and/or erasure of their entry data at any time. Here you can find how to export and/or delete submissions.
222
-
223
-
224
-
225
- == Installation ==
226
-
227
- After downloading the ZIP file,
228
-
229
- 1. Log in to the administrator panel.
230
- 1. Go to Plugins Add &gt; New &gt; Upload.
231
- 1. Click &quot;Choose file&quot; (&quot;Browse&quot;) and select the downloaded zip file.
232
- _For Mac Users_
233
- _Go to your Downloads folder and locate the folder with the plugin. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here._
234
- 1. Click &quot;Install Now&quot; button.
235
- 1. Click &quot;Activate Plugin&quot; button for activating the plugin.
236
-
237
- If the installation does not succeed, please contact us for help.
238
-
239
- After the installation is finished, you can go ahead and start working on your contact forms. Navigate to **Form Maker &gt; Forms** page to build your very first form. Form Maker plugin provides a few sample forms, which you can quickly edit and publish.
240
-
241
- Using **Form Maker &gt; Forms** page, you can manage existing forms, perform Bulk Actions, such as Publish, Unpublish, Duplicate or Delete. Select the necessary form, choose the bulk action, then press Apply. Also, you can search for your form by writing its title in the top Search input.
242
-
243
- **Adding Fields**
244
- To add a new field to your form, drag New Field button to the area where you wish to place the field. The field editor toolbox will be opened automatically. Click on the field set from which you are going to choose the field, for instance, User Info Fields. Press Name button from this field set to add a Name input to your contact form. Then click Add and the field will be placed to the area you selected initially.
245
-
246
- It is also possible to search among the fields when adding a new field to your form. Use Filter input at the top left corner of fields toolbox. For example, you can search &quot;phone&quot; and all Phone fields will be filtered.
247
-
248
- You can edit your form fields anytime by double-clicking on them. Alternatively, you can open field editor toolbox by clicking on a field once, then pressing the small pencil icon above. To change the placement of your fields, simply drag the field to the necessary area.
249
-
250
- After adding your form fields and updating your form, you are able to Undo or Redo the changes you have made. Please note, that these two buttons appear at the top of your form only after you modify the form and save the changes.
251
-
252
- == Screenshots ==
253
- 1. Reservation form created using Form Maker
254
- 2. Pop-up form created using Form Maker
255
- 3. Product Survey with radio buttons, evaluation, star rating, etc.
256
- 4. Feedback form with number range sliders, radio buttons, etc.
257
- 5. Form Maker - Drag and Drop Form builder interface
258
- 6. Form Maker - searching field types and adding a field to a form
259
- 7. Form Maker Options - Save data to database, save uploads, etc.
260
- 8. Form Maker - Manage form submissions, export, block ips
261
-
262
-
263
- == Frequently Asked Questions ==
264
-
265
- = What is Form Maker used for? =
266
-
267
- **Form Maker** is a modern and intuitive free online application form creator plugin developed for WordPress. It lets you build personalized, perfect-looking responsive forms with its elegant drag and drop interface.
268
-
269
- You can create custom forms free of additional coding, with just a few clicks. The functionality of Form Maker is excellent for any kind of online questionnaires.
270
-
271
- Form Maker can be used for creating multiple types of forms, including contact forms, evaluation form, application forms, quizzes/tests or survey forms, online order forms and etc. Form Maker includes various types of fields which can be modified and/or edited.
272
-
273
- Whether you are a WordPress beginner or a web guru, Form Maker is the perfect choice. The dynamic web form builder tool comes with clean visual tools and options, and you do not need to have any web development skills to build a form.
274
-
275
- = How can I create a contact form with Form Maker? =
276
-
277
- Navigate to **Form Maker > Forms** page to build your very first contact form. This contact form creator plugin provides a few sample forms, which you can quickly edit and publish.
278
-
279
- Using **Form Maker > Forms** page, you can manage existing forms, perform **Bulk Actions,** such as **Publish, Unpublish, Duplicate** or **Delete.** Select the necessary form, choose the bulk action, then press **Apply.** Also, you can search for your contact form by writing its title in the top **Search** input.
280
-
281
- Press **Add New** button from **Forms** page, and you will be redirected to **Form Editor** page. Make sure to write a **Title** for this contact form, then choose the **Theme** which sets the appearance of your form. In case you wish to display the contact form with the same style as your website theme, select **Inherit From Website Theme** option from **Theme** select box.
282
-
283
- To add a new field with this application form creator, drag **New Field** button to the area where you wish to place the field. The field editor toolbox of Form Maker will be opened automatically. Click on the field set from which you are going to choose the form field, for instance, **User Info Fields.** Press **Name** button from this field set to add a Name input to your form. Then click **Add** and the field will be placed to the area of the form you selected initially.
284
-
285
- It is also possible to search among the form builder fields when adding a new field to your form. Use **Filter** input at the top left corner of fields toolbox. For example, you can search "phone" and all Phone fields will be filtered.
286
-
287
- = Can I add a custom header with text and image above my contact form? =
288
-
289
- This dynamic contact form builder lets you have a nice header section on your forms, which can contain additional content, as well as images with animations. Click on **Form Header** bar of your form to open its toolbox and provide a **Title.** This is the form heading, which will appear above your form. In addition, you can write a **Description** to appear right below the Title of your form. This comes handy, in case you need to write an introduction for your form.
290
-
291
- You can also have an image on your form header and set it to appear with an animation effect. Press **Add Image** button to upload and select a picture from **WordPress Media Library.** Then choose the animation effect using Image Animation option.
292
-
293
- In case you don't want the **Header Image** of your forms to appear on smartphones and tablets, mark **Hide Image on Mobile** option as checked.
294
-
295
- Make sure to **Publish/Update** the form to save the change you made.
296
-
297
- = Does Form Maker support conditional logic and how can I use it? =
298
-
299
- Yes, another fantastic feature of this custom form creator plugin is its **Conditional Fields.** This lets you **show** or **hide** fields of your form based on certain selections submitter makes.
300
-
301
- The structure of conditional fields in this contact form generator form builder is the following: You can specify and/or show/hide a field, when condition is true and provide conditions below, e.g. Show "How many visitors will you have" if "Will you have visitors" is "Yes".
302
-
303
- Go to **Form Options** of your form, then click **Conditional Fields** tab to start the setup. Press **Add Condition** button to configure the first condition of your form.
304
-
305
- **Show/Hide** select box of this form builder plugin represents the action which will be completed, if all or any of the condition statements are fulfilled. Use the second drop-down menu to select the form builder field which will be shown or hidden.
306
-
307
- Click the little **Plus (+)** icon to add the statement of your form condition.
308
-
309
- For example, let's assume there is a **Single Choice** field on your form titled **Inquiry type.** And you wish to show **Message** field in case users choose **Support Request** as the type of their inquiry. The condition you configure needs to have the following logic:
310
-
311
- *Show [Message] if [all] of the following match:*
312
- *[Inquiry type] is [Support request]*
313
-
314
- Make sure to hit **Update** after setting up Conditional Fields on your Form Maker.
315
-
316
- = What styling options do the forms include? =
317
-
318
- This secure form builder plugin comes with **14 customizable themes,** which you can use to design your forms. Each theme of Form Maker provides a set of user-friendly options to change font size, alignment of the form, colors, modify paddings and more. You can edit the existing themes, or create your own by clicking **Add New** button.
319
-
320
- To set a initial default theme for your forms, press on the star icon next to the theme you would like to use. You can always change the theme by editing your forms.
321
-
322
- Options of Form Maker Themes are divided into the following sections:
323
-
324
- * Global Parameters
325
- * Form Header
326
- * Content
327
- * Inputbox
328
- * Choices (Multiple and Single)
329
- * General Buttons
330
- * Pagination
331
- * Form Buttons
332
- * Close (Minimize) Button
333
- * Minimize Text
334
- * Other
335
- * Custom CSS
336
-
337
- You can preview the design of each web form theme under Preview block. In case you created forms with multiple pages, you can change its Pagination Type, setting it to Step, Percentage or None.
338
-
339
- Custom CSS option in Themes of this offline form builder lets you write additional CSS code and customize your forms further. All CSS rules apply to this editor. Make sure to press Save after modifying the form theme.
340
-
341
- = Does Form Maker use auto-respondent feature? =
342
-
343
- You can use **Email Options** of Form Maker to send a fully customizable letter to the submitter. The entries can be included within the email. Just select the form you want to edit, then navigate to **Form Options &gt; Email Options.**
344
-
345
- This html5 form builder plugin lets you send submitted information to one or multiple email addresses. Furthermore, you can also send a confirmation email to the submitter and let them know you have received their application.
346
-
347
- Enable Send E-mail from **Form Options &gt; Email Options** tab and start configuring mailing settings. Most options require the same configuration for Email to Administrator and Email to User on the forms. However, there are a few settings which are unique.
348
-
349
- **Email to Administrator**
350
-
351
- This section of Email Options allows you to set up notifications of form submissions for website owners.
352
-
353
- **Email to User**
354
-
355
- **Send to.** Use this setting to select the email field of your form, to which the submissions will be sent.
356
-
357
- Important! In case you do not have an email input created from User Info Fields &gt; Email type on your form, the following error message will appear:
358
-
359
- &quot;There is no email field&quot;.
360
-
361
- **Email Verification.** Activate this option, in case you would like the users to verify their email addresses. If it's enabled, the user email will contain a verification link. Clicking on this link set the user email address as verified.
362
-
363
- **Verification link expires in.** Use this option to specify a time period (hours), during which the user will be able to verify their email address.
364
-
365
- **Edit Post.** Click this link to edit the content of Email Verification post. This is is the page, where users will be redirected after they click on the verification link in user email.
366
-
367
- = Can I create an online order form with this plugin? =
368
-
369
- *Payment support is available in the Premium version of the plugin.*
370
-
371
- In order to have a functional payment form, first and foremost, you need to have **Payment Fields** added to it. This way, Form Maker plugin will turn into an online order form creator quickly and easily. Build compact shopping forms, hotel reservation, online application or ticket sales forms with this feature.
372
-
373
- Note: You need to set up **Form Options > Payment Options** of your form in order to receive payments on your account. Follow the steps described on this section to do that.
374
-
375
- Configuring Payment Options, you can use Form Maker as an order form generator and let users make payments through your form. Default payment gateway of Form Maker is **PayPal.** Select **PayPal** as **Payment Method** from Form **Options &gt; Payment Options** tab and configure corresponding options.
376
-
377
- Also, you can easily integrate the forms builder plugin with Stripe using its Stripe Integration extension ( [Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing) ).
378
-
379
- **Payment Currency.** Choose the currency to be used for the payments made through your form. Note, that the selected currency symbol will only display on the front-end of the published form.
380
-
381
- **Tax (%).** Specify the percentage of the tax for your payment form. It will be calculated from the total payment amount of your form, and will be added to the grand total.
382
-
383
- **Checkout Mode.** Select the checkout mode for your form. Testmode will display PayPal Sandbox after submission, which allows you to run payment tests. When you are ready to receive payments, enable Production mode.
384
-
385
- **Paypal email.** Provide the email address of a valid PayPal account. This account will be used as the recipient of payments through your form.
386
-
387
- = Where can I check the submissions of my forms? =
388
-
389
- **Submissions** page of this HTML form generator plugin lets you view the full record of submissions of each web form. Choose your form from **Select a form** drop-down box to display its submitted information. Furthermore, you are able to view **Statistics** of **Single/Multiple Choice** and **Select Box** fields.
390
-
391
- **Entries / Conversion Rate / Views.** These attributes of **Submissions** page will help you quickly view the statistics of the selected form.
392
-
393
- **Export to CSV / Export to XML.** You are able to download all submissions of each contact form in **CSV** or **XML** format by clicking on these buttons.
394
-
395
- **Show Filters.** Form Maker lets you filter form submissions by values provided by user, e.g. submitter's email address, name and more. Press **Show Filters** button on form submissions, write the values you wish to search with, then press **Search.** Click **Reset** button to clear the filters.
396
-
397
- **Add/Remove Columns.** This button will help you customize the columns which display in submissions of the selected contact form. Click on the button and unmark the columns you wish to hide.
398
-
399
- *Note: Adding/Removing columns does not delete columns from the submissions table of your contact forms. It just hides them until you activate them again.*
400
-
401
- **Block IPs / Unblock IPs.** In case you are receiving spam submissions from certain IP addresses, you can block these addresses. Mark all spam submissions as checked, choose **Block IPs** option from **Bulk Actions** and press **Apply.** You are able to unblock these IP addresses anytime.
402
-
403
- **Delete.** If you wish to remove some or all submissions of a contact form, mark them as checked and select **Delete** option from **Bulk Actions.** Clicking **Apply** will delete these entries permanently.
404
-
405
- = Can user be redirected to another page after submitting the form? =
406
-
407
- Form Maker plugin allows you to configure different actions which occur after form submission. For instance, you can display a &quot;Thank you&quot; message after users submit the form, or redirect them to another page, or more.
408
-
409
- Navigate to Form Options &gt; Actions After Submissions tab, and select one of the options below to set up the action that occurs after users submit your form.
410
-
411
- * **Stay on Form.** This action will reload the form page and keep the submitter on the same page.
412
- * **Post.** Select this option to redirect users to a specific post after they hit Submit. You will then be able to select the post from Post dropdown menu.
413
- * **Page.** You can also redirect users to a selected page. Choose this option and specify the destination using Page dropdown menu.
414
- * **Custom text.** Use this action in case you wish to display a &quot;Thank you&quot; message after users submit the form. The editor box accepts text, basic HTML, as well as values of form fields. Include them to the content by pressing on the top buttons indicating form fields.
415
- * **URL.** Configure redirection from your forms to any page with this action after submission. Mark URL option, then provide the absolute path of the link to the input that appears.
416
-
417
- = What verification methods does Form Maker use? =
418
-
419
- Form Maker uses modern verification methods, such as ReCaptcha and invisible ReCaptcha. Please note that will need to obtain ReCaptcha keys to use these options. Otherwise you can use Simple Captcha and Arithmetical Captcha which use standard word verification and arithmetical expressions respectively.
420
-
421
- = Can I use Form Maker to create a registration form? =
422
-
423
- You can register users on your website with the help of Form Maker WordPress Registration Extension ( [Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing) ). Install the Extension and use it alongside the free version of Form Maker plugin.
424
-
425
- You are able to ask users to provide username, email address and password for their account. The registration of users is done upon completing the form created by this visual form builder plugin.
426
-
427
- = Is it possible to publish a contact form as a widget? =
428
-
429
- You can publish your form not only using **Display Options** of the web form builder tool, but also as a widget. Go to **Appearance > Widgets** page to place your form on any widget area of your website theme.
430
-
431
- Search for **Form Maker widget** and drag it to the widget area where you wish to place your form. Specify a **Title** for the widget and choose the form you wish to publish. Press **Save** after making these changes.
432
-
433
- = Can the form submissions be shown to site visitors? =
434
-
435
- **Premium version** of Form Maker plugin allows you to publish submissions on front-end of your website.
436
-
437
- This form creator plugin lets you select user roles which will be able to view the published submissions. This can be done from **Form Options > General Options** section. Also, in the same section, you are able to choose fields to hide from front-end submissions.
438
-
439
- Firstly, add/edit the page or post, where you wish to publish the submissions of form. Then press **Add Submission** button from the top of the post editor.
440
-
441
- **Select a Form.** Use this drop-down to choose the form, submissions of which you would like to publish.
442
-
443
- **Select Date Range.** You can display form submissions from a specific date range. Use this option to select **From** and **To** dates.
444
-
445
- **Select fields.** Use this option to choose which columns to show on the form. Uncheck the options, which you need to hide on front-end submissions.
446
-
447
- **Export to / Show.** These two settings are responsible for showing the rest of the attributes of front-end submissions. You can enable/disable **CSV/XML** export buttons, **Statistics, Views, Conversion Rate** and other additional information.
448
-
449
- After configuring all necessary options, press **Insert.** Publish your page with form submissions, and you will be able to view them on front-end.
450
-
451
- = Can I let users choose between PayPal or offline payments when submitting the form? =
452
-
453
- **Premium version** of this handy forms plugin has the features and functions to create PayPal forms. You need to use **Conditional Fields** and **Payment Fields** of the plugin. Here are the necessary steps.
454
-
455
- Firstly, add one **Single Choice** field from **Basic Fields** of Form Maker plugin. It should contain the following two options:
456
-
457
- * Pay with PayPal
458
- * Pay offline
459
-
460
- Afterwards, add two sets of almost identical fields, one of them created with regular form fields, second - with **Payment fields.**
461
-
462
- Then you can set conditions from **Form Options > Conditional Fields,** if the user chooses PayPal, payment fields will appear, otherwise, regular fields will.
463
-
464
- The user will not be redirected to PayPal if they make their selections using regular form fields.
465
-
466
- = How can a migrate Form Maker from one site to another? =
467
-
468
- If you want to migrate Form Maker database tables from one WordPress site to another, you need to follow the instructions below.
469
-
470
- *Please uninstall Form Maker if you have it installed on your second site first, then proceed with these steps:*
471
-
472
- **On your first WordPress site:**
473
-
474
- 1. Go to **PHPMyAdmin** of your site,
475
- 2. open your WordPress site database,
476
- 3. select **Export** menu item,
477
- 4. change the radio button from **Quick** to **Custom,**
478
- 5. unselect all tables and select the following 7 tables:
479
-
480
- *[wp1_prefix]_formmaker*
481
- *[wp1_prefix]_formmaker_blocked*
482
- *[wp1_prefix]_formmaker_query*
483
- *[wp1_prefix]_formmaker_sessions*
484
- *[wp1_prefix]_formmaker_submits*
485
- *[wp1_prefix]_formmaker_themes*
486
- *[wp1_prefix]_formmaker_views*
487
-
488
- (where **[wp1_prefix]** is your WordPress database prefix)
489
-
490
- 6. scroll all the way down and press the **Go** button. This should export an SQL file containing those 7 tables.
491
-
492
- **On your second WordPress site:**
493
-
494
- 7. Go to your WordPress database,
495
- 8. select **Import** menu item,
496
- 9. browse for the exported SQL file,
497
- 10. scroll all the way down and press **Go** button. This should import Form Maker tables to your WordPress database.
498
-
499
- Now you need to change the prefix for those tables to the one that is set for your second WordPress database.
500
-
501
- 11. Select **[wp1_prefix]_formmaker** table from the left pane of PHPMyAdmin of your second WordPress database,
502
- 12. select **Operations** menu item from the top menu
503
- 13. scroll to **Table Options** box and edit the value of **Rename table to** field with the second WordPress database prefix, so that the table name now looks like this: **[wp2_prefix]_formmaker** (where **[wp2_prefix]** is your second WordPress database prefix)
504
- 14. do the same for other 6 tables.
505
- 15. go to your second WordPress administration panel and install the Form Maker.
506
-
507
- That's it! Now you should have your forms, submissions, and themes all set up.
508
-
509
- = Characters in the submission CSV file do not appear correctly. How can I fix this? =
510
-
511
- Please note, that this problem is not caused by Form Maker plugin. It is rather a formatting issue in Excel. However, you can prevent it the following way:
512
-
513
- * Please open a new Microsoft Excel document first. Then go to **Data** tab from the menu and click on **From Text.**
514
- * Choose the CSV file you need to view. You'll see a pop-up window with several options, you'll find the **File Origin** option along with them.
515
- * Please select **Unicode (UTF-8)** for this dropdown and click **Next** if you need to edit other options, or just **Finish** to insert the document.
516
-
517
- The special characters in the CSV submissions of your contact forms should appear correctly afterwards.
518
-
519
- = I do not receive any submission emails of my forms. How can this be fixed? =
520
-
521
- This might be a problem related to the hosting configurations of your website. You can check that the following way.
522
-
523
- Please install [WP SMTP](https://wordpress.org/plugins/wp-smtp/) plugin and go to **Settings > WP SMTP** page. Scroll down to the bottom and send a test mail to your email address.
524
-
525
- If the test email will be sent, then the issue is triggered by Form Maker plugin. Please contact [10Web Customer Care at WordPress.org Support Forums](https://wordpress.org/support/plugin/form-maker/). Our developers will have a closer look.
526
-
527
- But if the test mail fails, the problem is on the server of your website. Please contact your hosting provider in this case, and ask them to enable mail functions on your site.
528
-
529
- = My forms do not submit due to Javascript errors. How can they be eliminated? =
530
-
531
- This problem could be related to permission settings of Form Maker files on your web server. Please check that the following way.
532
-
533
- Connect to your website files via FTP connection and open the following two directories:
534
-
535
- *wp-content/uploads/form-maker-frontend/js/*
536
- *wp-content/uploads/form-maker-frontend/css/*
537
-
538
- Please make sure all **.css** and **.js** files in these folders have their permissions set to **777.**
539
-
540
- If the permissions are correct, please do not hesitate to contact [10Web Customer Care at WordPress.org Support Forums](https://wordpress.org/support/plugin/form-maker/).
541
-
542
- = Is it possible to pass parameters from the page URL to form fields? =
543
-
544
- To fill in values of parameters from a URL into Form Maker fields, it is necessary to implement a custom script. Please navigate to **Form Options > Javascript** page and add the following code inside **before_load()** function:
545
-
546
- `function getParameterByName(name, url) {
547
- if (!url) {
548
- url = window.location.href;
549
- }
550
- name = name.replace(/[[]]/g, "$&");
551
- var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
552
- results = regex.exec(url);
553
- if (!results) return null;
554
- if (!results[2]) return '';
555
- return decodeURIComponent(results[2].replace('/+/g', " "));
556
- }
557
- jQuery("#{{field_id}}").val(getParameterByName("{{param_name}}"));
558
- jQuery("#{{field_id}}").attr("class", "input_active");`
559
-
560
- Where **{{field_id}}** is the ID of the field you wish to prefill. Also, **{{param_name}}** is the name of the parameter in the URL.
561
-
562
-
563
- == Changelog ==
564
-
565
- = 1.13.34 =
566
- * Added: Option to limit the number of submissions.
567
- * Added: Functionality to add placeholders in a redirect URL after submitting.
568
- * Added: Croatian kuna and Pakistani Rupee to currencies list.
569
- * Fixed: Cases when js files are blocked from htaccess.
570
- * Fixed: Saving the theme with empty lines in Custom CSS.
571
- * Fixed: 'Other' option from multiple-choice as a conditional field.
572
- * Fixed: GDPR Checkbox in Internet Explorer 11.
573
- * Fixed: Error message for File upload field.
574
-
575
- = 1.13.33 =
576
- * Removed: Dismissable notification about new offer by 10Web.
577
-
578
- = 1.13.32 =
579
- * Added: Dismissable notification about new offer by 10Web.
580
-
581
- = 1.13.31 =
582
- * Fixed: Bug on Google reCapthcha v3.
583
- * Fixed: Upload file broken link in post content (Post Generation extension).
584
-
585
- = 1.13.30 =
586
- * Improved: Security.
587
- * Fixed: Make Slider field to work with floating steps.
588
- * Fixed: Paypal checkout with empty quantity.
589
- * Fixed: Labels ordering after page drag&drop.
590
-
591
- = 1.13.29 =
592
- * Removed: Banner to install Image optimizer.
593
-
594
- = 1.13.28 =
595
- * Fixed: Statistics for multiple choice logic.
596
-
597
- = 1.13.27 =
598
- * Added: Option to disable shake effect on error.
599
- * Fixed: Multiple choice fields styles on IE11.
600
- * Fixed: Show error message for blocked IPs.
601
- * Fixed: Do not show deleted fields in placeholders list.
602
-
603
- = 1.13.26 =
604
- * Fixed: Uploaded file url in email.
605
-
606
- = 1.13.25 =
607
- * Fixed: Issue with saving a form with non Unicode characters.
608
-
609
- = 1.13.24 =
610
- * Fixed: Minor bug.
611
-
612
- = 1.13.23 =
613
- * Added: Flush Rewrite Rules for multisite.
614
- * Added: South Sudan to Address and Country List fields.
615
- * Improved: Include Google Fonts only if used by a form on that page.
616
- * Fixed: + sign in Regular Expressions.
617
- * Fixed: Recaptcha with AJAX submit.
618
- * Fixed: Row maximum width.
619
- * Fixed: Placeholder text color.
620
- * Fixed: PHP validation issue on an empty non-required email field.
621
-
622
- = 1.13.22 =
623
- * Added: New Extension: Form Maker Webhooks.
624
- * Added: Message about missing Stripe keys.
625
- * Improved: Email field validation for Cyrillic.
626
- * Fixed: Allow + sign in password for connecting to remote DB in MySQL mapping.
627
-
628
- = 1.13.21 =
629
- * Added: "Custom text" in "Action after submission" for not embedded forms.
630
- * Improved: Generated JS/CSS files fallback.
631
- * Changed: Do not show confirmation alert on deleting empty columns.
632
- * Fixed: Submitting a form with a value equal to the placeholder.
633
- * Fixed: Recaptcha load issue with slow internet.
634
- * Fixed: Show the unpublished form message only to the administrator.
635
- * Fixed: Pagination styles for Form Maker admin pages.
636
- * Fixed: Importing submissions of multiple forms at once.
637
- * Fixed: Saving IP on "Block IPs" page.
638
- * Fixed: Shortcode buttons behavior in Text widget of Divi Builder.
639
- * Fixed: Condition with line break in Textarea default value.
640
- * Fixed: Upload file URL in the email when Save Uploads is disabled.
641
-
642
- = 1.13.20 =
643
- * Added: Ask a question button.
644
-
645
- = 1.13.19 =
646
- * Removed: Webinar banner.
647
-
648
- = 1.13.18 =
649
- * Fixed: Conflict with common mod_security rules.
650
-
651
- = 1.13.17 =
652
- * Fixed: Spam protection.
653
- * Fixed: Counting form views.
654
- * Fixed: Error message on submitting form with existing username.
655
-
656
- = 1.13.16 =
657
- * Added: Webinar banner.
658
-
659
- = 1.13.15 =
660
- * Added: Use AJAX to submit forms (optional).
661
- * Added: Additional spam protection (optional).
662
- * Updated: PO files.
663
- * Improved: Email delivery functionality.
664
- * Fixed: Disable the submit button with deactivated Privacy options.
665
- * Fixed: Empty time field in Submissions.
666
- * Fixed: Recaptcha responsiveness.
667
- * Fixed: Do not include dashicons to front.
668
-
669
- = 1.13.14 =
670
- * Fixed: Action after submission for cached pages.
671
-
672
- = 1.13.12 =
673
- * Added: "Get Free Ebook" page on activation.
674
- * Added: Integration with reCaptcha v3.
675
- * Added: Fields placeholder functionality for Email to Admin.
676
- * Fixed: Disable auto fill for Date field.
677
- * Fixed: Pagination.
678
- * Changed: Banner text.
679
-
680
- = 1.13.10 =
681
- * Fixed: Page title in progress bar.
682
- * Fixed: Option for selecting posts/pages to display Popup, Topbar, and Scrollbox forms.
683
-
684
- = 1.13.9 =
685
- * Fixed: Issue with saving themes.
686
-
687
- = 1.13.8 =
688
- * Fixed: Form submit bug.
689
-
690
- = 1.13.7 =
691
- * Added: Support for 'all' placeholder in actions after submission.
692
- * Added: Provinces for Canada.
693
- * Improved: Spam protection.
694
- * Improved: Minify js, css.
695
- * Changed: Some country names.
696
- * Fixed: Two required "Table of fields" fields on a page.
697
- * Fixed: Error on uninstalling from multisite.
698
- * Fixed: Preview in themes edit page.
699
- * Fixed: User guide links for tabs in form edit page.
700
- * Fixed: Empty Simple Captcha input after form reset.
701
- * Fixed: Remove unnecessary container from placeholders popup.
702
-
703
- = 1.13.6 =
704
- * Fixed: Payment info is not retrieved.
705
-
706
- = 1.13.5 =
707
- * Fixed: CSRF issue.
708
- * Added: Banner to install 10Web manager.
709
-
710
- = 1.13.4 =
711
- * Fixed: Vulnerability on submissions page.
712
-
713
- = 1.13.3 =
714
- * Added: Functionality to add placeholders in "Select options from database" Where selector.
715
- * Added: Functionality to use "Star rating" as a condition.
716
- * Fixed: Security issue.
717
- * Fixed: Link for attachment in email.
718
- * Fixed: Allow "0" value for required fields.
719
- * Fixed: Don't use the same title for the duplicated form.
720
- * Fixed: Adding field to incorrect position.
721
- * Fixed: Scroll to required address field.
722
- * Fixed: Broken multiple pages.
723
- * Fixed: MySQL mapping edit functionality.
724
- * Fixed: Multisite support for add-ons.
725
- * Fixed: Saving advanced layout.
726
- * Fixed: 0 value is not saved in submissions for Payment single choice and Shipping fields.
727
-
728
- = 1.13.2 =
729
- * Changed: Links to 10Web.io.
730
-
731
- = 1.13.1 =
732
- * Fixed: Bug on checking if Address field is required.
733
-
734
- = 1.13.0 =
735
- * Added: Enable/Disable option for Form header.
736
- * Added: Tax option for Stripe payments.
737
- * Added: "Class name" option for "Single Line Text" field to allow add a css class for the field.
738
- * Added: "Palestine" to country list field.
739
- * Changed: Form editing page layout.
740
- * Changed: Form Revisions functionality.
741
- * Changed: Settings (Form Options) tab new design.
742
- * Changed: Form Publishing tab new design.
743
- * Changed: Selecting a Theme moved to Appearance.
744
- * Changed: Make email options a separate tab.
745
- * Changed: Remove required mark color from "Default" and "Inherit from site" themes.
746
- * Changed: Inherit styles (font, color) from Elementor for Form maker widget.
747
- * Fixed: Try to reproduce, try/catch curl part of code.
748
- * Fixed: Requirement of table field should be affected on all rows of it.
749
- * Fixed: The Like/Starting With options in WHERE of Select options from Database.
750
- * Fixed: Remove the link of the word "Privacy Policy" when there is no Privacy Policy page.
751
- * Fixed: Styles for rtl languages.
752
- * Fixed: Addons settings for duplicated forms.
753
- * Fixed: Required validation not allow space.
754
- * Fixed: Error when clicking allow or skip to collect some usage data more then once.
755
-
756
- = 1.12.42 =
757
- * Fixed: Remove the link from "Privacy Policy" text in the form when there is no Privacy Policy page.
758
-
759
- = 1.12.41 =
760
- * Added: WHERE selectors in "Options from database" (Select, Single and Multiple choice fields).
761
- * Added: Placeholders (User ID, Submitter's IP, etc.) in WHERE clause in "Options from database" and MySQL Mapping.
762
- * Improved: Parsing images in post content in Post Generation extension.
763
- * Improved: Automatically deactivate plugin after uninstall.
764
- * Fixed: Scroll issues on Safari (MacOS).
765
- * Fixed: "Receive Copy" field checkbox with Form maker some themes.
766
- * Fixed: "Custom text" after form submit.
767
-
768
- = 1.12.39 =
769
- * Added: Drag & Drop of Columns in form editor
770
- * Added: Drag & Drop of Pages in form editor
771
- * Added: New icon in Elementor plugin
772
- * Improved: Drag & Drop of fields in form editor
773
- * Fixed: Conditional fields flickering during page loading
774
-
775
- = 1.12.38 =
776
- * Improved: GDPR compliance options.
777
- * Added: Step option for slider field.
778
- * Fixed: Error on form front end when Privacy Policy checkbox is enabled.
779
- * Fixed: Bug on Actions after submission when Redirect to URL option is empty.
780
- * Fixed: Notice on form submit.
781
- * Fixed: Minor issues on Themes.
782
-
783
- = 1.12.37 =
784
- * Fixed: Compatibility with PHP version 5.3.
785
-
786
- = 1.12.36 =
787
- * Improved: Uninstall Form Maker interface and texts.
788
- * Fixed: "New Form Field" button drag and drop issue in Firefox and Safari.
789
- * Fixed: Do not show hidden amounts in total.
790
- * Fixed: Failed to import form submissions when there is a single quote in the form title.
791
- * Fixed: Can not submit contact form when there is a condition on stripe field and stripe is not visible.
792
- * Added: GDPR compliance required checkbox on the front end.
793
- * Added: Warn user if the email address does not belong to the site domain.
794
-
795
- = 1.12.35 =
796
- * Fixed: PDF should be generated even if sending emails is off.
797
- * Fixed: Form field validation issues on multi-page forms.
798
- * Fixed: Issue with Exporting/Importing a form with special characters in header.
799
-
800
- = 1.12.34 =
801
- * Added: Additional security check to block form submissions from bots.
802
- * Improved: Submissions CSV/XML export for bigger forms.
803
- * Improved: Rendering of forms in Elementor front-end builder preview.
804
- * Improved: Optimized the back end Scripts and CSS for faster loading.
805
- * Fixed: Form Submissions page responsiveness issue on mobile devices.
806
-
807
- = 1.12.33 =
808
- * Added: Option to enable/disable WP Editor.
809
- * Added: Additional security checks against bots.
810
- * Changed: Form field validation on form options page.
811
- * Fixed: Error on deactivation.
812
- * Fixed: Port for connecting to a remote Database with SQL mapping.
813
- * Fixed: Displaying Form on all posts instead of the selected.
814
- * Fixed: Filled values of payment form fields should not be lost on an error.
815
- * Fixed: Form is not saved if you click Publish before the page is loaded.
816
- * Fixed: Table of fields validation on form submission.
817
- * Fixed: Add shortcode functionality on Beaver, Elementor, SiteOrigin and Visual Composer builders.
818
- * Fixed: If you Sort/Filter the data via some column, then hit next page button, the sort reverts to the default sort order.
819
- * Fixed: Select all in Submissions should apply to the current page only.
820
- * Fixed: Do not change the page after IP block in submissions page.
821
- * Fixed: Do not change the page after deleting submission in submissions page.
822
-
823
- = 1.12.32 =
824
- * Fixed: Include styles/scripts on form pages only.
825
-
826
- = 1.12.31 =
827
- * Improved: CSV, XML export.
828
- * Improved: default email design
829
- * Improved: Minor improvements in email options
830
- * Fixed: PHP validation for email.
831
- * Fixed: Preserve the list of columns displayed when changing the page.
832
- * Fixed: Do not display ScrollBox form after Successful submission.
833
-
834
- = 1.12.30 =
835
- * Changed: Separate buttons for deactivation.
836
-
837
- = 1.12.29 =
838
- * Fixed: Bug on empty values for some form field types.
839
-
840
- = 1.12.28 =
841
- * Added: Custom javascript event, occurs after form is submitted.
842
- * Changed: Code structure refactoring.
843
- * Fixed: Bug on required form fields PHP validation.
844
- * Fixed: Bug on saving a theme.
845
-
846
- = 1.12.27 =
847
- * Added: Help and suggestions text for Privacy Policy (for GDPR compliance)
848
- * Added: Privacy related text to readme.
849
-
850
- = 1.12.26 =
851
- * Fixed: Vulnerabilities reported by Neven Biruski from DefenseCode (using the tool ThunderScan).
852
- * Fixed: "The loopback request to your site failed" error.
853
-
854
- = 1.12.25 =
855
- * Changed: Updated translations.
856
- * Added: Gutenberg integration.
857
- * Fixed: Required mark for "Receive Copy" form field.
858
- * Fixed: Bug on selecting options from database.
859
-
860
- = 1.12.24 =
861
- * Minor fix: an incorrect link
862
-
863
- = 1.12.23 =
864
- * Improved: Insert placeholder functionality.
865
- * Fixed: Action after submission text for popup forms.
866
- * Fixed: Do not allow negative numbers as quantity.
867
- * Added: Loading for add-ons options.
868
- * Added: Premium version page new style.
869
- * Added: Add-ons page new style.
870
- * Fixed: Submission id bug.
871
- * Fixed: Security issue reported by Sairam Jetty.
872
-
873
- = 1.12.22 =
874
- * Fixed: Security issue with CSV export.
875
-
876
- = 1.12.21 =
877
- * Changed: DB field length.
878
-
879
- = 1.12.20 =
880
- * Added: New file types for Form Maker file upload form field.
881
- * Improved: Editing empty mini labels.
882
- * Fixed: Form Submissions CSV export.
883
-
884
- = 1.12.19 =
885
- * Fixed: Form Submissions table view for long texts.
886
- * Fixed: Displaying phone field value in form email notification.
887
- * Fixed: Bug on deleting a Page break.
888
-
889
- = 1.12.18 =
890
- * Changed: improved Form Submissions view: added tooltips for long labels of form fields.
891
- * Added: detailed descriptions of form fields inside the form editor
892
- * Fixed: UTF-8 text in Email body.
893
-
894
- = 1.12.17 =
895
- * Fixed: UTF-8 text for Email subject and Email from name.
896
-
897
- = 1.12.16 =
898
- * Improved: Email functionality of Form Maker.
899
- * Fixed: Multiple choice and single choice with long labels.
900
- * Fixed: Form submissions CSV export with UTF-8 encoding.
901
-
902
- = 1.12.15 =
903
- * Fixed: Error on adding a form field.
904
-
905
- = 1.12.14 =
906
- * Fixed: Form submissions page.
907
-
908
- = 1.12.13 =
909
- * Fixed: Bug on Popup forms on mobile.
910
- * Fixed: Major bug.
911
- * Fixed: Exclude Stripe field from submissions export.
912
- * Fixed: "Custom HTML" field label in conditional fields list.
913
- * Fixed: Edit table of form fields in submissions.
914
- * Fixed: Trim data inserted by MySQL mapping.
915
- * Fixed: Default values for payment multiple and payment single choices.
916
- * Changed: Prevent default on form enter.
917
-
918
- = 1.12.12 =
919
- * Changed: Improved query to get number of form submissions.
920
- * Changed: Email field length in DB.
921
-
922
- = 1.12.11 =
923
- * Fixed: Form preview does not show with widget on page with some Wordpress themes.
924
- * Fixed: Do not check conditionally hidden required fields.
925
- * Fixed: Not embedded forms do not show on form preview page.
926
- * Fixed: Post/page search on display options pages.
927
- * Fixed: Tooltip in "Add query" popup.
928
- * Fixed: Insert demo forms only on activate.
929
- * Changed: Edit country list popup design.
930
- * Fixed: Emailing fields with apostrophes in label.
931
- * Fixed: Popup forms background.
932
- * Changed: Czech translation.
933
- * Changed: Italian translation.
934
- * Fixed: Matrix field in email.
935
- * Changed: Disable widget in preview page.
936
- * Fixed: Widget functionality with Contact Form Maker.
937
- * Fixed: Form Maker user manual links.
938
- * Fixed: Default values for multiple and single choices.
939
- * Fixed: Add new theme.
940
- * Fixed: Redirect from Paypal.
941
-
942
- = 1.12.10 =
943
- * Fixed: a minor bug.
944
-
945
- = 1.12.9 =
946
- * Fixed: Date range field buttons position.
947
- * Fixed: Forms count in backend.
948
- * Fixed: Placeholder notice with password fields.
949
- * Added: Puerto Rico, Wales to country list.
950
-
951
-
952
- = 1.12.8 =
953
- * Updated: WD Library.
954
- * Updated: Support forum link.
955
-
956
- = 1.12.7 =
957
- * Added: Invisible reCAPTCHA.
958
- * Improved: Compatibility with Contact Form Maker.
959
- * Improved: Stripe add-on styles.
960
- * Fixed: Some frontend styles.
961
- * Fixed: Fields width in forms manage page.
962
- * Changed: Field edit buttons place.
963
-
964
- = 1.12.6 =
965
- * Added: Full width functionality for fields.
966
- * Added: New Default Theme.
967
- * Added: Support forum and Review links.
968
- * Changed: Date field calendar icon.
969
- * Changed: Field manage functionality.
970
- * Changed: jQuery-UI styles.
971
- * Changed: Three form changed in new formats.
972
- * Improved: Responsiveness.
973
- * Fixed: Time, Date of Birth and Number fields validation also on mobile.
974
- * Fixed: Scroll to field on error.
975
- * Fixed: Right to left styles.
976
- * Fixed: Conflict with Yoast SEO plugin.
977
-
978
- = 1.12.5 =
979
- * Added: Hong Kong to country list.
980
- * Fixed: List of US states.
981
-
982
- = 1.12.4 =
983
- * Changed: Email validation field now allows + symbol
984
- * Changed: Remove Font Awesome.
985
- * Changed: Italian translation.
986
-
987
- = 1.12.3 =
988
- * Fixed: Get editor by id instead of active.
989
- * Fixed: Not found form id redirect to main page.
990
-
991
- = 1.12.2 =
992
- * Fixed: Border types bug
993
- * Fixed: Bug with PayPal IPN
994
- * Fixed: Date format synchronization with Save Progress add-on
995
-
996
- = 1.12.1 =
997
- * Changed: Add field button design.
998
- * Added: Show popup notice to install Backup WD plugin.
999
-
1000
- = 1.12.0 =
1001
- * Changed: Improved user interface of forms, submissions and options.
1002
- * Changed: Separated field types into Basic, User Info, Layout, Advanced and Payment sections.
1003
- * Changed: Simplified the structure of Form Options tabs.
1004
- * Added: Drag and Drop builder button.
1005
-
1006
- = 1.11.11 =
1007
- * Fixed: Conflict with Jetpack Contact Form module.
1008
-
1009
- = 1.11.8 =
1010
- * Updated: WD Library.
1011
-
1012
- = 1.11.7 =
1013
- * Fixed: Theme version control.
1014
-
1015
- = 1.11.6 =
1016
- * Fixed: Shortcode editor pop-up styles.
1017
- * Fixed: Scripts enqueue in Manage Forms page.
1018
- * Fixed: MySQL Mapping fields list scrolling.
1019
-
1020
- = 1.11.5 =
1021
- * Fixed: Bug on CSV/XML export.
1022
- * Fixed: Google maps api conflict with other plugins.
1023
- * Changed: Improved Matrix type field view in submissions.
1024
- * Fixed: File upload field styles with "Inherit from website theme".
1025
-
1026
- = 1.11.4 =
1027
- * Fixed: Bug on color picker when choosing transparency
1028
- * Fixed: Bug on submissions edit
1029
- * Fixed: Bug on "Inherit from website" theme
1030
- * Fixed: Bug on Paypal notifications
1031
- * Changed: Form Options tab id to avoid conflict with some plugins
1032
-
1033
-
1034
- = 1.11.3 =
1035
- * Added: Global option to enable Advanced Layout
1036
- * Changed: Themes table field name: `params` to `css`
1037
- * Fixed: Bug on PHP 5.2
1038
- * Fixed: Uninstall bug in free version
1039
- * Fixed: bug on generating Theme css
1040
- * Fixed: CSS conflict with some ajax themes
1041
-
1042
- = 1.11.2 =
1043
- * Added: Overview page
1044
- * Removed: Featured Plugins, Featured Themes pages
1045
- * Fixed: Security issue
1046
- * Fixed: Themes - bug on save as copy
1047
-
1048
-
1049
- = 1.11.1 =
1050
- * Removed: Old forms support (created with Form Maker versions < 1.7.0)
1051
- * Added: Form Header
1052
- * Added: New Themes
1053
- * Added: New Theme Editor
1054
- * Added: Form Display Options (Embedded, Popup, Topbar, Scrollbox)
1055
- * Fixed: Database creation on some versions of MySQL
1056
- * Fixed: Removed html tags from csv and xml
1057
-
1058
- = 1.10.11 =
1059
- * Added: Support forum links.
1060
-
1061
- = 1.10.10 =
1062
- * Fixed: Bug on arithmetic captcha
1063
-
1064
- = 1.10.9 =
1065
- * Changed: New logo
1066
-
1067
- = 1.10.8 =
1068
- * Added: New form field type: Phone with flag
1069
- * Fixed: Bug on captcha reset
1070
-
1071
- = 1.10.7 =
1072
- * Changed: Improved captcha security
1073
- * Fixed: Bug on matrix field
1074
- * Fixed: Bug on conditional fields (for date field)
1075
- * Added: Notification about old forms
1076
-
1077
- = 1.10.6 =
1078
- * Fixed: Bug on spinner field
1079
- * Fixed: Bug on matrix field
1080
-
1081
- = 1.10.5 =
1082
- * Fixed: JS conflict on contact form submission
1083
-
1084
- = 1.10.4 =
1085
- * Fixed: Conflict with Yoast SEO plugin
1086
- * Fixed: Line breaks in textarea after incorrect captcha
1087
-
1088
- = 1.10.3 =
1089
- * Fixed: Bug on PHP 5.3
1090
-
1091
- = 1.10.2 =
1092
- * Added: New Global option "Use an alternative version of JS code on front-end:". Checking this box fixes JS conflicts with some themes, that alter inline JS.
1093
-
1094
- = 1.10.1 =
1095
- * Added: Verified emails list in csv, xml files
1096
-
1097
- = 1.10 =
1098
- * Changed: Field validation errors and notifications
1099
- * Added: Real time field validation
1100
- * Changed: Improved NL translation
1101
- * Fixed: Bug on verified emails
1102
-
1103
- = 1.9.18 =
1104
- * Added: Filter verified emails and Export submissions with verified emails
1105
-
1106
- = 1.9.17 =
1107
- * Fixed: Bug with search by ID in Submissions
1108
- * Fixed: Bug with Validation (Regular Exp.)
1109
-
1110
- = 1.9.16 =
1111
- * Fixed: Bug with Hidden field in custom text in Email
1112
- * Fixed: Bug on email verification custom post
1113
- * Added: Field type in field edit page
1114
-
1115
- = 1.9.15 =
1116
- * Added: Password Confirmation field
1117
-
1118
- = 1.9.14 =
1119
- * Fixed: Bug on CSV and XML export
1120
-
1121
- = 1.9.13 =
1122
- * Fixed: Bug on Field label position (Left/Top)
1123
- * Fixed: JS error on IE 11 and Microsoft Edge
1124
-
1125
- = 1.9.12 =
1126
- * Added: Email Confirmation field
1127
- * Fixed: Bug on CSV and XML export
1128
-
1129
- = 1.9.11 =
1130
- * Changed: Filters now apply to CSV and XML export
1131
-
1132
- = 1.9.10 =
1133
- * Fixed: Bug on "Advanced Layout"
1134
-
1135
- = 1.9.9 =
1136
- * Changed: Featured plugins page
1137
-
1138
- = 1.9.8 =
1139
- * Fixed: Unexpected behavior on pressing "Enter" key on back end form creator page
1140
-
1141
- = 1.9.7 =
1142
- * Fixed: JS error on incorrect Google Maps API key
1143
- * Added: Alert about incorrect Google Maps API key
1144
-
1145
- = 1.9.6 =
1146
- * Added: Global option for Google Maps API key
1147
- * Fixed: Google Maps API key warning in browser
1148
-
1149
- = 1.9.5 =
1150
- * Changed: Improvements in "Select options from database" pop-up window for Select box, single and multiple choices
1151
- * Fixed: Back end minor style issues
1152
-
1153
- = 1.9.3 =
1154
- * Fixed: Bug with Date field in custom text in Email
1155
- * Fixed: Bug on editing submissions with checkbox and radio fields with customized values
1156
-
1157
- = 1.9.2 =
1158
- * Added: "View" button on submissions to open a single submission in a separate pop-up window
1159
- * Fixed: Minor bugs on editing submissions
1160
-
1161
- = 1.9.1 =
1162
- * Fixed: bug on date field on some browsers (Safari, Edge)
1163
-
1164
- = 1.9 =
1165
- * Changed: Improved Date picker functionality (new options: Dates to exclude, Default, Minimum, Maximum dates)
1166
- * Added: New field type: Date Range
1167
-
1168
- = 1.8.41 =
1169
- * Fixed: Bug on conditional fields (for multiple contact forms on the same page)
1170
-
1171
- = 1.8.40 =
1172
- * Changed: Style of required field asterisk
1173
- * Changed: Display the correct IDs and Names of the fields in the back end (Add/Edit field interface) to use in js/css
1174
-
1175
- = 1.8.39 =
1176
- * Fixed: Bug on Matrix field (additional attributes)
1177
-
1178
- = 1.8.38 =
1179
- * Fixed: Bug on Matrix field (special characters in row/column labels)
1180
-
1181
- = 1.8.36 =
1182
- * Fixed: Bug on long content in textarea fields
1183
-
1184
- = 1.8.35 =
1185
- * Fixed: Browser warning on Google Maps API version
1186
- * Fixed: Phone field style issue on Mac OS
1187
-
1188
- = 1.8.34 =
1189
- * Fixed: Some minor style issues
1190
-
1191
- = 1.8.33 =
1192
- * Fixed: Bug in Address field
1193
- * Fixed: Bug with Additional Attributes in Email field
1194
- * Changed: before_submit() function functionality
1195
-
1196
- = 1.8.32 =
1197
- * New Add-on: Calculator
1198
- Removed: deprecated Number field
1199
-
1200
- = 1.8.31 =
1201
- * Fixed: Issue with search in Submissions page
1202
-
1203
- = 1.8.30 =
1204
- * Added: Submission ID in csv export
1205
-
1206
- = 1.8.29 =
1207
- * Changed: Featured Plugins, Featured Themes pages design.
1208
-
1209
- = 1.8.28 =
1210
- * Fixed: Bug in Email Options
1211
- * Fixed: Bug in Conditional Fields
1212
- * Fixed: Bug in date field
1213
-
1214
- = 1.8.27 =
1215
- * Fixed: Bug in Conditional Fields
1216
- * Fixed: Bug with Additional Attributes in Multiple Choice
1217
-
1218
- = 1.8.26 =
1219
- * Fixed: Submissions page styles
1220
- * Fixed: Issue with IPv6
1221
-
1222
- = 1.8.25 =
1223
- * Fixed: Bug in conditional fields.
1224
- * Changed: Featured Plugins, Featured Themes pages design.
1225
-
1226
- = 1.8.24 =
1227
- * Added: File upload as a link in email
1228
-
1229
- = 1.8.23 =
1230
- * Fixed: Bug in textarea field with line breaks
1231
-
1232
- = 1.8.22 =
1233
- * Fixed: Conflict with some plugins
1234
-
1235
- = 1.8.21 =
1236
- * Fixed: Bug in selec tbox
1237
-
1238
- = 1.8.20 =
1239
- * Added: Auto fill with user data for email address and name fields
1240
-
1241
- = 1.8.19 =
1242
- * Changed: Back End design
1243
-
1244
- = 1.8.18 =
1245
- * Added: Date format validation
1246
- * Fixed: Recaptcha Validation bug
1247
-
1248
- = 1.8.17 =
1249
- * Added: Global Options
1250
-
1251
- = 1.8.16 =
1252
- * Fixed: User guide links
1253
-
1254
- = 1.8.15 =
1255
- * Changed: Back End Design for old forms
1256
-
1257
- = 1.8.14 =
1258
- * Fixed: Bug in PayPal field
1259
- * Changed: Matrix field display in email
1260
-
1261
- = 1.8.13 =
1262
- * Fixed: Style in form builder edit page
1263
- * Fixed: Bug in PayPal options
1264
-
1265
- = 1.8.12 =
1266
- * Changed: Submissions page styles
1267
-
1268
- = 1.8.11 =
1269
- * New Add-on: Stripe Integration
1270
-
1271
- = 1.8.10 =
1272
- * Fixed: Bug in name field
1273
- * Fixed: Bug in captcha
1274
-
1275
- = 1.8.9 =
1276
- * New Add-on: Save Progress
1277
-
1278
- = 1.8.8 =
1279
- * Fixed: Minor bug
1280
-
1281
- = 1.8.7 =
1282
- * New: New year promo
1283
-
1284
- = 1.8.6 =
1285
- * Changed: Reset button
1286
- * Fixed: Bug with scrolling in new field pop up
1287
- * Fixed: Bug in MySql mapping on firefox browser
1288
-
1289
- = 1.8.5 =
1290
- * Fixed: Bug in mysql mapping.
1291
- * Changed: Featured themes page.
1292
-
1293
- = 1.8.4 =
1294
- * Fixed: Bug in submissions
1295
-
1296
- = 1.8.3 =
1297
- * Changed: Backend design
1298
-
1299
- = 1.8.2 =
1300
- * New Add-on: Pushover Integration
1301
-
1302
- = 1.8.1 =
1303
- * Fixed: Bug in email options
1304
- * Changed: Backend design
1305
-
1306
- = 1.8.0 =
1307
- * Changed: Backend design
1308
-
1309
- = 1.7.97 =
1310
- * Fixed: Bug in CSV/XML export
1311
-
1312
- = 1.7.96 =
1313
- * Added: Preview button
1314
- * Changed: Conditional fields limitation
1315
-
1316
- = 1.7.95 =
1317
- * Changed: csv/xml export file directory
1318
-
1319
- = 1.7.94 =
1320
- * Added: Progress bar for csv/xml export
1321
-
1322
- = 1.7.93 =
1323
- * Fixed: Bug in mailing
1324
- * Changed: Calendar styles
1325
-
1326
- = 1.7.92 =
1327
- * Fixed: Bug in mailing
1328
-
1329
- = 1.7.91 =
1330
- * Changed: Themes
1331
- * Fixed: Bug in block ip
1332
-
1333
- = 1.7.90 =
1334
- * Fixed: Bug in CSV/XML export
1335
-
1336
- = 1.7.89 =
1337
- * Fixed: Conflict with some plugins
1338
- * Changed: Styles
1339
-
1340
- = 1.7.88 =
1341
- * New: Double scroll in submissions page
1342
- * New: Delete confirmation
1343
- * Fixed: Bug in mysql mapping for conditional fields
1344
-
1345
- = 1.7.87 =
1346
- * Fixed: Bug in CSV/XML export
1347
-
1348
- = 1.7.86 =
1349
- * Changed: CSV/XML export
1350
-
1351
- = 1.7.85 =
1352
- * Fixed: Bug in conditional fields
1353
-
1354
- = 1.7.84 =
1355
- * New Add-on: PDF Integration
1356
-
1357
- = 1.7.83 =
1358
- * New: Google Drive Integration Add-on
1359
-
1360
- = 1.7.82 =
1361
- * Fixed: Bug in demo forms
1362
-
1363
- = 1.7.81 =
1364
- * Fixed: Bug in update
1365
-
1366
- = 1.7.80 =
1367
- * Changed: Notices
1368
-
1369
- = 1.7.79 =
1370
- * Fixed: Bug in update
1371
-
1372
- = 1.7.78 =
1373
- * Changed: Themes
1374
-
1375
- = 1.7.77 =
1376
- * New: Dropbox Integration Add-on
1377
-
1378
- = 1.7.76 =
1379
- * Changed: Licensing/Donation page
1380
- * Changed: Notices
1381
-
1382
- = 1.7.75 =
1383
- * Changed: Submissions default ordering
1384
- * Changed: Featured Plugins page
1385
-
1386
- = 1.7.74 =
1387
- * Fixed: Minor bugs
1388
-
1389
- = 1.7.73 =
1390
- * New: Notices
1391
-
1392
- = 1.7.71 =
1393
- * New Add-on: Conditional Emails
1394
-
1395
- = 1.7.70 =
1396
- * Changed: Styles
1397
-
1398
- = 1.7.69 =
1399
- Minor bug fixed
1400
-
1401
- = 1.7.68 =
1402
- * Changed: Compatibility with WordPress 4.3
1403
-
1404
- = 1.7.67 =
1405
- * Fixed: Bug in slider field
1406
- * Fixed: Bug in address field
1407
- * Fixed: Bug in mysql mapping
1408
-
1409
- = 1.7.66 =
1410
- * Fixed: Bug in Undo/Redo
1411
-
1412
- = 1.7.65 =
1413
- * New: Post Generation Add-on
1414
-
1415
- = 1.7.64 =
1416
- * Fixed: Minor bug
1417
-
1418
- = 1.7.63 =
1419
- * New: Add-ons page logo
1420
-
1421
- = 1.7.62 =
1422
- * New Add-on: User Registration
1423
-
1424
- = 1.7.61 =
1425
- * New: Form Maker Add-ons page
1426
-
1427
- = 1.7.60 =
1428
- * Fixed: Minor bug
1429
-
1430
- = 1.7.59 =
1431
- * Fixed: Bug in csv/xml export
1432
-
1433
- = 1.7.58 =
1434
- * Fixed: Minor bugs
1435
- * Added: Email verification custom post
1436
-
1437
- = 1.7.57 =
1438
- * Fixed: Security issue
1439
-
1440
- = 1.7.56 =
1441
- * New: ReCaptcha version 2.0
1442
- * New: Arithmetic Captcha
1443
-
1444
- = 1.7.55 =
1445
- * New: Undo/Redo form
1446
-
1447
- = 1.7.54 =
1448
- bug in conditional fields fixed
1449
-
1450
- = 1.7.53 =
1451
- bug in select field fixed
1452
-
1453
- = 1.7.52 =
1454
- minor bugs fixed
1455
-
1456
- = 1.7.51 =
1457
- * Changed: Featured plugins page.
1458
- * New: Featured themes page.
1459
-
1460
- = 1.7.50 =
1461
- minor bugs fixed
1462
-
1463
- = 1.7.49 =
1464
- Limited up to 7 fields to add
1465
- Bug fixed
1466
-
1467
- = 1.7.48 =
1468
- bug in radio and matrix fields fixed
1469
-
1470
- = 1.7.47 =
1471
- Show custom html and section break id
1472
-
1473
- = 1.7.46 =
1474
- Limited up to 9 fields to add
1475
- * New: Enable/Disable Title and Middle Name for Name field
1476
-
1477
- = 1.7.45 =
1478
- * New: Option to disable past days in date picker
1479
-
1480
- = 1.7.44 =
1481
- security issue fixed
1482
-
1483
- = 1.7.43 =
1484
- * New: Email verification
1485
-
1486
- = 1.7.42 =
1487
- bug in recaptcha fixed
1488
- change links
1489
-
1490
- = 1.7.40 =
1491
- Allow to use entry values in "Custom text after submission"
1492
-
1493
- = 1.7.39 =
1494
- * New: User information in mysql mapping
1495
- * Fixed: Country names
1496
-
1497
- = 1.7.38 =
1498
- bug fixed in stats
1499
- change field value type to longtext
1500
-
1501
- = 1.7.37 =
1502
- Optimize csv/xml export
1503
-
1504
- = 1.7.35 =
1505
- * New: Email empty fields option
1506
-
1507
- = 1.7.34 =
1508
- * New: Validation (Regular Exp.)
1509
- * Fixed: Select field duplication
1510
-
1511
- = 1.7.33 =
1512
- bug in address field fixed
1513
-
1514
- = 1.7.32 =
1515
- bug fixed
1516
-
1517
- = 1.7.31 =
1518
- Bug fixed: Hidden field save to DB.
1519
- * New: Drag and drop options in multiple, single choices and select box.
1520
- * New: Select options from database.
1521
- * New: Add image in email as image.
1522
- * New: Additional clauses within conditional fields.
1523
- * New: Search submissions by ID.
1524
- * New: Submission ID in email.
1525
-
1526
- = 1.7.30 =
1527
- Cache issue fixed
1528
-
1529
- = 1.7.29 =
1530
- Bug fixed: Empty email "From name".
1531
- Bug fixed: Delete theme.
1532
-
1533
- = 1.7.28 =
1534
- Bug fixed: Edit submissions.
1535
- Bug fixed: Conditional fields with quota in labels
1536
-
1537
- = 1.7.27 =
1538
- bug fixed in csv\xml export
1539
-
1540
- = 1.7.26 =
1541
- bug fixed in email content
1542
-
1543
- = 1.7.25 =
1544
- remove fancybox lightbox
1545
-
1546
- = 1.7.24 =
1547
- display php function to publish contact form
1548
-
1549
- = 1.7.23 =
1550
- bug in Recaptcha fixed
1551
-
1552
- = 1.7.22 =
1553
- Form field reordering using Drag&Drop
1554
-
1555
- = 1.7.21 =
1556
- wp 4.0.1 shortcode issue fixed
1557
-
1558
- = 1.7.18 =
1559
- pagination with input
1560
-
1561
- = 1.7.17 =
1562
- bug fixed in condition fields
1563
-
1564
- = 1.7.16 =
1565
- show submitter information in popup (Country, CountryCode, City, Latitude, Longitude)
1566
-
1567
- = 1.7.15 =
1568
- bug fixed
1569
-
1570
- = 1.7.14 =
1571
- csv, xml export mark on map
1572
-
1573
- = 1.7.13 =
1574
- sql mapping
1575
-
1576
- = 1.7.12 =
1577
- extended name edit bug fixed (if first input is empty)
1578
-
1579
- = 1.7.11 =
1580
- hidden field edit bug fixed
1581
-
1582
- = 1.7.10 =
1583
- security issue fixed
1584
-
1585
- = 1.7.9 =
1586
- line break in custom text in email
1587
-
1588
- = 1.7.8 =
1589
- bug fixed in required radio field
1590
-
1591
- = 1.7.7 =
1592
- bug fixed in adding new contact form
1593
-
1594
- = 1.7.6 =
1595
- new email options, conditional fields
1596
-
1597
- = 1.7.5 =
1598
- conflict with Jetpack Contact Form module fixed
1599
-
1600
- = 1.7.4 =
1601
- bug fixed in form options
1602
-
1603
- = 1.7.2 =
1604
- improve themes
1605
-
1606
- = 1.7.1 =
1607
- bug fixed in email options
1608
-
1609
- = 1.7 =
1610
- Div structured, responsive form
1611
- Editable html form layout
1612
- New themes
1613
-
1614
- = 1.6.6 =
1615
- * fix security issue which was reported by Mateusz Lach
1616
- = 1.6.4 =
1617
- * Added featured plugins
1618
- = 1.6.3 =
1619
- * From Name, From Email in Form options
1620
- = 1.5.0 =
1621
- * Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)
1622
- = 1.4.0 =
1623
- * Customizable Email message for Administrator and Users
1624
- = 1.3.0 =
1625
- * Actions after form Submission:
1626
- - Stay on form:
1627
- - To go to Post,Page after the form submission:
1628
- - Custom text after the form submission:
1629
- - URL: The user is redirected to the provided URL after the form submission.
1630
- * Edit javascript of the form:
1631
- * Save as the copy of the form:
1632
- * Themes: There are 43 standard themes included in Form Maker
1633
- * New form fields:
1634
- - Address field
1635
- - Address mark on map form field
1636
- - Number form field
1637
- - Phone form field
1638
- - Date 3 different form field
1639
- - Time form field
1640
- - Country list form field
1641
- - Recaptcha form field
1642
- * Pagebreak of the [Wordpress Form](http://wordpress.org/plugins/form-maker/) Maker: This can be used to break the form into distinct pages.
1643
- * Section Break of the Form Maker: This option allows adding a section break to the form page.
1644
- * For each web form certain types of statistical data are available in the form builder tool:
1645
- * Entries of a form: The number of submitted forms in the form builder tool.
1646
- * Views of a form: The number of times the form has been viewed.
1647
- * Conversion Rate of a form: The percentage of submitted forms to the overall number of views.
1648
-
1649
- = 1.0.0 =
 
 
 
 
1650
  Initial version
1
+ === Form Maker by 10Web - Mobile-Friendly Drag & Drop Contact Form Builder ===
2
+ Contributors: webdorado,10web,wdsupport,formmakersupport
3
+ Tags: form, forms, form builder, contact form, feedback, custom form, contact, web contact form, captcha, email, form manager, survey
4
+ Requires at least: 4.6
5
+ Tested up to: 5.4
6
+ Stable tag: 1.13.35
7
+ License: GPLv2 or later
8
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
+
10
+ Form Maker is a user-friendly contact form builder that allows to create forms for any purpose, from a simple contact form to multi page survey forms
11
+
12
+ == Description ==
13
+
14
+ Form Maker is the leading drag & drop plugin for building forms of any complexity in just a few clicks.
15
+
16
+ = Useful Links: =
17
+ [Live Demo](https://demo.10web.io/form-maker/)
18
+
19
+
20
+ [Demo Admin](https://admindemo.10web.io/?product_name=form-maker)
21
+
22
+ [Premium Form Maker by 10Web](https://10web.io/plugins/wordpress-form-maker/)
23
+
24
+ [Special Offer for all Premium Plugins](https://10web.io/plugins-bundle-pricing/)
25
+
26
+ https://www.youtube.com/watch?v=vxxKfhxIS44
27
+
28
+
29
+ Looking for the perfect form plugin that’ll save you time and effort?
30
+
31
+ Is matching your website design with your forms difficult?
32
+
33
+ Finding it hard to build lengthy and advanced forms?
34
+
35
+
36
+ == Form Maker Features ==
37
+
38
+ **Intuitive Interface**
39
+ Drag and drop to build complex forms with just a few clicks.
40
+
41
+ **Mobile-Friendly and Responsive**
42
+ Your forms will look great on all resolutions and devices: mobile, tablet, and desktop.
43
+
44
+ **Field Types**
45
+ 43 different form field types to help you create just the form you need.
46
+
47
+ **Embed Easily**
48
+ Display your forms as popups, top bars or scroll boxes or embed them into blog posts.
49
+
50
+ **Pre-built Templates**
51
+ Pick from five form template options to save time.
52
+
53
+ **Fully Customizable Themes**
54
+ Use one of our fifteen beautiful themes to make your forms match website design.
55
+
56
+ **Manage Submissions**
57
+ Set automatic email replies, track and export all your entries, and more.
58
+
59
+ **Protection from Spam**
60
+ Block IPs and set captchas to avoid spam.
61
+
62
+ **Receive Payments\***
63
+ Get payments and donations using integrated PayPal and Stripe gateways.
64
+
65
+ **Conditional Logic**
66
+ Build forms with complex conditional logic.
67
+
68
+ **Multi-Page Forms**
69
+ Divide up lengthy forms into pages to provide better user experience.
70
+
71
+ **File Upload\***
72
+ Your users can upload files to your forms.
73
+
74
+ _\* Premium version only_
75
+
76
+
77
+
78
+ == Form Maker Extensions ==
79
+ _[Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing)_
80
+
81
+ **Save Form Progress**
82
+ Your users can save unfinished entries and continue anytime.
83
+
84
+ **Conditional Mailing**
85
+ Send out emails to user groups based on submitted forms.
86
+
87
+ **Export/Import**
88
+ Export form entries and forms in the XML format and import them into another site afterwards.
89
+
90
+ **Pushover**
91
+ Get a notification on your phone whenever there is an entry submission.
92
+
93
+ **Mailchimp Integration**
94
+ Create Mailchimp signup forms and expand your lead list.
95
+
96
+ **WordPress Registration**
97
+ Build WP user registration forms and expand the user base of your site.
98
+
99
+ **Post Generation**
100
+ Use a form to invite your users to submit guest posts.
101
+
102
+ **Dropbox Integration**
103
+ Store attachments received from form entries in your Dropbox.
104
+
105
+ **Google Drive Integration**
106
+ Upload received form attachments straight to your Google Drive.
107
+
108
+ **PDF Integration**
109
+ Use content from submitted entries to create PDFs.
110
+
111
+ **Stripe**
112
+ Your users can make credit card payments via Stripe, and we’ll transfer them to your bank account automatically.
113
+
114
+ **Calculator**
115
+ Build forms that contain automatically calculated fields.
116
+
117
+
118
+
119
+ Form Maker is a power-packed yet user-friendly form builder plugin. With an intuitive drag and drop interface, this plugin is the ultimate solution to help you create responsive contact Forms easily and in a timely manner. Add modern and functional questionnaires to your website with a few clicks. Using the plugin you can create forms for pretty much any purpose, from simple email form or contact form to multi-page application, registration survey and questionnaire with conditional fields, captcha protection, multiple choice questions and more. It will take you just a few clicks to create an email form and a couple of minutes to customize with the available themes, styling and display options.
120
+
121
+
122
+ == World Class Customer Support ==
123
+ * Low response time
124
+ We always respond within a few hours.
125
+ * Quick issue resolution
126
+ Resolving an issue never takes more than 24 hours.
127
+
128
+
129
+ == Just ask our users ==
130
+
131
+ > I had tried several form plugins but I was always searching for a better one.
132
+ > Then I stumbled Formmaker just by chance and thought to give a try.
133
+ > I was thrilled to see its features. It has more than everything I expected. Very customizable and easy to use.
134
+ > Now I don’t search for form plugin anymore
135
+ > Lots of thanks to the developers of this plugin.
136
+ > **by [@mayank0522](https://wordpress.org/support/topic/a-must-have-plugin-223/)**
137
+
138
+
139
+ > If I could give this plugin more than 5 stars I would!
140
+ > The level of control is extremely nice – even with the free version – though I quickly purchased the PRO version!
141
+ > And the level of customer service in troubleshooting forum questions is incredible!
142
+ > Very impressed with the plugin – but even more so with the way they interact with and help users get to what they need!
143
+ > Great job guys!!
144
+ > **by [@JonathanWilson99](https://wordpress.org/support/topic/amazing-form-plugin/)**
145
+
146
+
147
+ > This is the best plugin for creating functional forms and very user friendly even for the none technical users.
148
+ > Absolutely recommend everyone to use this one.
149
+ > Thanks a lot guys!!!
150
+ > **by [@denisecox](https://wordpress.org/support/topic/wonderful-form-builder-plugin/)**
151
+
152
+ == Steps for creating a website form ==
153
+ 1. Install Form Maker by 10Web.
154
+ 2. Create a form in a few clicks.
155
+ 3. Publish your form.
156
+
157
+ **Benefits**
158
+
159
+ * **Better communication between your visitors and you** - Contact forms serve as a communication tool between you and your site visitors, and make it easy to get/receive orders, requests, and inquiries. If you offer memberships, courses or trainings on your website, forms are an easy way to order, apply or register online.
160
+ * **Valuable User/Customer Feedback** - You are what your user/customer thinks of you! The plugin lets you put together surveys and questionnaires and get feedback from your users/customers.
161
+ * **One plugin, different purposes** - Whether you want to have a single form on the contact us page, or multiple, on different pages on your website, that's absolutely doable with this plugin. You can create unlimited number of different forms and display them using one of the available display options. Please note, that free version is limited to 7 form fields.
162
+ * **Save time** - Plugin uses an intuitive drag and drop interface, which makes it easy to create contact forms and add/remove form fields.
163
+ * **Add to the overall website design** - A well designed contact form can contribute to your website's overall look and feel. Customize its style and have it match with your website design.
164
+ * **Improve accessibility** - Plugin provides four different display options, which make your contact forms easily accessible. Whether you want to embed the form into a post or a page, or have it follow the visitors as they scroll up and down, you have the option to do that.
165
+
166
+
167
+ **What's in it**
168
+
169
+ **MULTIPLE FORM FIELDS**
170
+ Plugin comes with a myriad of field options to let you create high performing forms. The fields you can add include: text input, multiple and single choice fields, select box, submit and reset buttons, custom HTML, 3 types of captcha protection and many more. In addition to these fields, the Premium version of the plugin offers file upload, Google Maps, and payment fields with automatic PayPal integration or Stripe integration with an add on.
171
+
172
+ **FOUR FORM DISPLAY OPTIONS**
173
+ There are four display options in the plugin: Embedded, Pop-Up, Scroll-box, and Top-bar. Each of the display options has its own set of settings you can customize.
174
+
175
+ **DRAG &amp; DROP**
176
+ The intuitive drag-and-drop interface of the plugin makes it the most user-friendly form plugin for WordPress. Easily re-order the sequence of the fields or move them between columns, sections and pages, organizing your forms in no time.
177
+
178
+ **15 CUSTOMIZABLE THEMES**
179
+ Plugin comes with 15 fully customizable themes that you can apply to your forms. Under the theme options you can configure pretty much any setting of the theme, personalizing options for header, content, pagination, buttons and more. You can also create your own themes with your personal styling and features.
180
+
181
+ **CUSTOM CSS EDITOR**
182
+ You can use the custom CSS editor to give additional styling features to the forms.
183
+
184
+ **CUSTOMIZABLE EMAILS**
185
+ Send customized emails to your users as well as website administrators upon submission for any given form.
186
+
187
+ **MANAGED SUBMISSIONS**
188
+ View and manage the submissions for each web form. See number of entries, number of views, the conversion rate and more.
189
+
190
+ **CONDITIONAL FIELDS**
191
+ Conditional fields feature of the plugin lets you display/hide specific fields based on the user input. This is a great way to make your forms shorter and avoid receiving irrelevant information.
192
+
193
+ **PRE-BUILD TEMPLATES**
194
+ The plugin comes with 5 pre-built templates, which you can use as they are or customize to better fit your needs.
195
+
196
+
197
+ **SETTINGS/CUSTOMIZATION**
198
+ _\*Some customizations described here are available in Premium version. Please refer to feature summary for additional info._
199
+
200
+ Form Maker plugin provides a full range of options and features you can tailor to your needs. Each of the forms you create will have its own set of form options and display settings. Under the options you can choose a theme for each custom web form, adjust email options, choose what happens after the user submits, set conditional logic, and choose one of the available payment options, such as PayPal and Stripe (Extension). Under the display settings you can adjust the options for each web form display type.
201
+
202
+ The available themes are fully configurable, allowing you make the necessary adjustments to the header, content, input box, buttons, choices, pagination, and add custom CSS. You can change the header background color, adjust the parameters for title, description and header image,customize the parameters for buttons, adjust the settings for single and multiple choice questions, and many more. The changes you make to the settings will immediately be displayed in the form preview next to the settings box.
203
+
204
+ With conditional fields option you can set to hide/show specific fields based on the selections your visitors make. You just choose the field you want to show or hide, then set the conditions based on which the field will appear or will be hidden. The plugin features a user-friendly interface, which makes it easy to create, style and customize the forms.
205
+
206
+
207
+ **[Premium version adds](https://10web.io/plugins/wordpress-form-maker/)**
208
+
209
+ * Unlimited fields in one form
210
+ * File Upload field
211
+ * PayPal Integration (Creating PayPal Forms for payments)
212
+ * Stripe Integration (Creating Credit Card payment Forms) with Extension
213
+ * Google Maps API Integration
214
+ * Front-End Submissions
215
+
216
+
217
+ == Privacy Notices ==
218
+
219
+ Form Maker plugin does not collect and store any data of your users on 10Web's end. All data submitted by your website visitors is stored in your website database. With every form submission Form Maker plugin collects users' IP address and WordPress user ID for logged in users. From this perspective, you may be subject to GDPR compliance.
220
+
221
+ Form Maker forms imply interaction between website visitors and website owner. As such you may publish forms that require input of Private data. You need to get explicit consent from your users to comply with GDPR. Under GDPR your users may request access and/or erasure of their entry data at any time. Here you can find how to export and/or delete submissions.
222
+
223
+
224
+
225
+ == Installation ==
226
+
227
+ After downloading the ZIP file,
228
+
229
+ 1. Log in to the administrator panel.
230
+ 1. Go to Plugins Add &gt; New &gt; Upload.
231
+ 1. Click &quot;Choose file&quot; (&quot;Browse&quot;) and select the downloaded zip file.
232
+ _For Mac Users_
233
+ _Go to your Downloads folder and locate the folder with the plugin. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here._
234
+ 1. Click &quot;Install Now&quot; button.
235
+ 1. Click &quot;Activate Plugin&quot; button for activating the plugin.
236
+
237
+ If the installation does not succeed, please contact us for help.
238
+
239
+ After the installation is finished, you can go ahead and start working on your contact forms. Navigate to **Form Maker &gt; Forms** page to build your very first form. Form Maker plugin provides a few sample forms, which you can quickly edit and publish.
240
+
241
+ Using **Form Maker &gt; Forms** page, you can manage existing forms, perform Bulk Actions, such as Publish, Unpublish, Duplicate or Delete. Select the necessary form, choose the bulk action, then press Apply. Also, you can search for your form by writing its title in the top Search input.
242
+
243
+ **Adding Fields**
244
+ To add a new field to your form, drag New Field button to the area where you wish to place the field. The field editor toolbox will be opened automatically. Click on the field set from which you are going to choose the field, for instance, User Info Fields. Press Name button from this field set to add a Name input to your contact form. Then click Add and the field will be placed to the area you selected initially.
245
+
246
+ It is also possible to search among the fields when adding a new field to your form. Use Filter input at the top left corner of fields toolbox. For example, you can search &quot;phone&quot; and all Phone fields will be filtered.
247
+
248
+ You can edit your form fields anytime by double-clicking on them. Alternatively, you can open field editor toolbox by clicking on a field once, then pressing the small pencil icon above. To change the placement of your fields, simply drag the field to the necessary area.
249
+
250
+ After adding your form fields and updating your form, you are able to Undo or Redo the changes you have made. Please note, that these two buttons appear at the top of your form only after you modify the form and save the changes.
251
+
252
+ == Screenshots ==
253
+ 1. Reservation form created using Form Maker
254
+ 2. Pop-up form created using Form Maker
255
+ 3. Product Survey with radio buttons, evaluation, star rating, etc.
256
+ 4. Feedback form with number range sliders, radio buttons, etc.
257
+ 5. Form Maker - Drag and Drop Form builder interface
258
+ 6. Form Maker - searching field types and adding a field to a form
259
+ 7. Form Maker Options - Save data to database, save uploads, etc.
260
+ 8. Form Maker - Manage form submissions, export, block ips
261
+
262
+
263
+ == Frequently Asked Questions ==
264
+
265
+ = What is Form Maker used for? =
266
+
267
+ **Form Maker** is a modern and intuitive free online application form creator plugin developed for WordPress. It lets you build personalized, perfect-looking responsive forms with its elegant drag and drop interface.
268
+
269
+ You can create custom forms free of additional coding, with just a few clicks. The functionality of Form Maker is excellent for any kind of online questionnaires.
270
+
271
+ Form Maker can be used for creating multiple types of forms, including contact forms, evaluation form, application forms, quizzes/tests or survey forms, online order forms and etc. Form Maker includes various types of fields which can be modified and/or edited.
272
+
273
+ Whether you are a WordPress beginner or a web guru, Form Maker is the perfect choice. The dynamic web form builder tool comes with clean visual tools and options, and you do not need to have any web development skills to build a form.
274
+
275
+ = How can I create a contact form with Form Maker? =
276
+
277
+ Navigate to **Form Maker > Forms** page to build your very first contact form. This contact form creator plugin provides a few sample forms, which you can quickly edit and publish.
278
+
279
+ Using **Form Maker > Forms** page, you can manage existing forms, perform **Bulk Actions,** such as **Publish, Unpublish, Duplicate** or **Delete.** Select the necessary form, choose the bulk action, then press **Apply.** Also, you can search for your contact form by writing its title in the top **Search** input.
280
+
281
+ Press **Add New** button from **Forms** page, and you will be redirected to **Form Editor** page. Make sure to write a **Title** for this contact form, then choose the **Theme** which sets the appearance of your form. In case you wish to display the contact form with the same style as your website theme, select **Inherit From Website Theme** option from **Theme** select box.
282
+
283
+ To add a new field with this application form creator, drag **New Field** button to the area where you wish to place the field. The field editor toolbox of Form Maker will be opened automatically. Click on the field set from which you are going to choose the form field, for instance, **User Info Fields.** Press **Name** button from this field set to add a Name input to your form. Then click **Add** and the field will be placed to the area of the form you selected initially.
284
+
285
+ It is also possible to search among the form builder fields when adding a new field to your form. Use **Filter** input at the top left corner of fields toolbox. For example, you can search "phone" and all Phone fields will be filtered.
286
+
287
+ = Can I add a custom header with text and image above my contact form? =
288
+
289
+ This dynamic contact form builder lets you have a nice header section on your forms, which can contain additional content, as well as images with animations. Click on **Form Header** bar of your form to open its toolbox and provide a **Title.** This is the form heading, which will appear above your form. In addition, you can write a **Description** to appear right below the Title of your form. This comes handy, in case you need to write an introduction for your form.
290
+
291
+ You can also have an image on your form header and set it to appear with an animation effect. Press **Add Image** button to upload and select a picture from **WordPress Media Library.** Then choose the animation effect using Image Animation option.
292
+
293
+ In case you don't want the **Header Image** of your forms to appear on smartphones and tablets, mark **Hide Image on Mobile** option as checked.
294
+
295
+ Make sure to **Publish/Update** the form to save the change you made.
296
+
297
+ = Does Form Maker support conditional logic and how can I use it? =
298
+
299
+ Yes, another fantastic feature of this custom form creator plugin is its **Conditional Fields.** This lets you **show** or **hide** fields of your form based on certain selections submitter makes.
300
+
301
+ The structure of conditional fields in this contact form generator form builder is the following: You can specify and/or show/hide a field, when condition is true and provide conditions below, e.g. Show "How many visitors will you have" if "Will you have visitors" is "Yes".
302
+
303
+ Go to **Form Options** of your form, then click **Conditional Fields** tab to start the setup. Press **Add Condition** button to configure the first condition of your form.
304
+
305
+ **Show/Hide** select box of this form builder plugin represents the action which will be completed, if all or any of the condition statements are fulfilled. Use the second drop-down menu to select the form builder field which will be shown or hidden.
306
+
307
+ Click the little **Plus (+)** icon to add the statement of your form condition.
308
+
309
+ For example, let's assume there is a **Single Choice** field on your form titled **Inquiry type.** And you wish to show **Message** field in case users choose **Support Request** as the type of their inquiry. The condition you configure needs to have the following logic:
310
+
311
+ *Show [Message] if [all] of the following match:*
312
+ *[Inquiry type] is [Support request]*
313
+
314
+ Make sure to hit **Update** after setting up Conditional Fields on your Form Maker.
315
+
316
+ = What styling options do the forms include? =
317
+
318
+ This secure form builder plugin comes with **14 customizable themes,** which you can use to design your forms. Each theme of Form Maker provides a set of user-friendly options to change font size, alignment of the form, colors, modify paddings and more. You can edit the existing themes, or create your own by clicking **Add New** button.
319
+
320
+ To set a initial default theme for your forms, press on the star icon next to the theme you would like to use. You can always change the theme by editing your forms.
321
+
322
+ Options of Form Maker Themes are divided into the following sections:
323
+
324
+ * Global Parameters
325
+ * Form Header
326
+ * Content
327
+ * Inputbox
328
+ * Choices (Multiple and Single)
329
+ * General Buttons
330
+ * Pagination
331
+ * Form Buttons
332
+ * Close (Minimize) Button
333
+ * Minimize Text
334
+ * Other
335
+ * Custom CSS
336
+
337
+ You can preview the design of each web form theme under Preview block. In case you created forms with multiple pages, you can change its Pagination Type, setting it to Step, Percentage or None.
338
+
339
+ Custom CSS option in Themes of this offline form builder lets you write additional CSS code and customize your forms further. All CSS rules apply to this editor. Make sure to press Save after modifying the form theme.
340
+
341
+ = Does Form Maker use auto-respondent feature? =
342
+
343
+ You can use **Email Options** of Form Maker to send a fully customizable letter to the submitter. The entries can be included within the email. Just select the form you want to edit, then navigate to **Form Options &gt; Email Options.**
344
+
345
+ This html5 form builder plugin lets you send submitted information to one or multiple email addresses. Furthermore, you can also send a confirmation email to the submitter and let them know you have received their application.
346
+
347
+ Enable Send E-mail from **Form Options &gt; Email Options** tab and start configuring mailing settings. Most options require the same configuration for Email to Administrator and Email to User on the forms. However, there are a few settings which are unique.
348
+
349
+ **Email to Administrator**
350
+
351
+ This section of Email Options allows you to set up notifications of form submissions for website owners.
352
+
353
+ **Email to User**
354
+
355
+ **Send to.** Use this setting to select the email field of your form, to which the submissions will be sent.
356
+
357
+ Important! In case you do not have an email input created from User Info Fields &gt; Email type on your form, the following error message will appear:
358
+
359
+ &quot;There is no email field&quot;.
360
+
361
+ **Email Verification.** Activate this option, in case you would like the users to verify their email addresses. If it's enabled, the user email will contain a verification link. Clicking on this link set the user email address as verified.
362
+
363
+ **Verification link expires in.** Use this option to specify a time period (hours), during which the user will be able to verify their email address.
364
+
365
+ **Edit Post.** Click this link to edit the content of Email Verification post. This is is the page, where users will be redirected after they click on the verification link in user email.
366
+
367
+ = Can I create an online order form with this plugin? =
368
+
369
+ *Payment support is available in the Premium version of the plugin.*
370
+
371
+ In order to have a functional payment form, first and foremost, you need to have **Payment Fields** added to it. This way, Form Maker plugin will turn into an online order form creator quickly and easily. Build compact shopping forms, hotel reservation, online application or ticket sales forms with this feature.
372
+
373
+ Note: You need to set up **Form Options > Payment Options** of your form in order to receive payments on your account. Follow the steps described on this section to do that.
374
+
375
+ Configuring Payment Options, you can use Form Maker as an order form generator and let users make payments through your form. Default payment gateway of Form Maker is **PayPal.** Select **PayPal** as **Payment Method** from Form **Options &gt; Payment Options** tab and configure corresponding options.
376
+
377
+ Also, you can easily integrate the forms builder plugin with Stripe using its Stripe Integration extension ( [Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing) ).
378
+
379
+ **Payment Currency.** Choose the currency to be used for the payments made through your form. Note, that the selected currency symbol will only display on the front-end of the published form.
380
+
381
+ **Tax (%).** Specify the percentage of the tax for your payment form. It will be calculated from the total payment amount of your form, and will be added to the grand total.
382
+
383
+ **Checkout Mode.** Select the checkout mode for your form. Testmode will display PayPal Sandbox after submission, which allows you to run payment tests. When you are ready to receive payments, enable Production mode.
384
+
385
+ **Paypal email.** Provide the email address of a valid PayPal account. This account will be used as the recipient of payments through your form.
386
+
387
+ = Where can I check the submissions of my forms? =
388
+
389
+ **Submissions** page of this HTML form generator plugin lets you view the full record of submissions of each web form. Choose your form from **Select a form** drop-down box to display its submitted information. Furthermore, you are able to view **Statistics** of **Single/Multiple Choice** and **Select Box** fields.
390
+
391
+ **Entries / Conversion Rate / Views.** These attributes of **Submissions** page will help you quickly view the statistics of the selected form.
392
+
393
+ **Export to CSV / Export to XML.** You are able to download all submissions of each contact form in **CSV** or **XML** format by clicking on these buttons.
394
+
395
+ **Show Filters.** Form Maker lets you filter form submissions by values provided by user, e.g. submitter's email address, name and more. Press **Show Filters** button on form submissions, write the values you wish to search with, then press **Search.** Click **Reset** button to clear the filters.
396
+
397
+ **Add/Remove Columns.** This button will help you customize the columns which display in submissions of the selected contact form. Click on the button and unmark the columns you wish to hide.
398
+
399
+ *Note: Adding/Removing columns does not delete columns from the submissions table of your contact forms. It just hides them until you activate them again.*
400
+
401
+ **Block IPs / Unblock IPs.** In case you are receiving spam submissions from certain IP addresses, you can block these addresses. Mark all spam submissions as checked, choose **Block IPs** option from **Bulk Actions** and press **Apply.** You are able to unblock these IP addresses anytime.
402
+
403
+ **Delete.** If you wish to remove some or all submissions of a contact form, mark them as checked and select **Delete** option from **Bulk Actions.** Clicking **Apply** will delete these entries permanently.
404
+
405
+ = Can user be redirected to another page after submitting the form? =
406
+
407
+ Form Maker plugin allows you to configure different actions which occur after form submission. For instance, you can display a &quot;Thank you&quot; message after users submit the form, or redirect them to another page, or more.
408
+
409
+ Navigate to Form Options &gt; Actions After Submissions tab, and select one of the options below to set up the action that occurs after users submit your form.
410
+
411
+ * **Stay on Form.** This action will reload the form page and keep the submitter on the same page.
412
+ * **Post.** Select this option to redirect users to a specific post after they hit Submit. You will then be able to select the post from Post dropdown menu.
413
+ * **Page.** You can also redirect users to a selected page. Choose this option and specify the destination using Page dropdown menu.
414
+ * **Custom text.** Use this action in case you wish to display a &quot;Thank you&quot; message after users submit the form. The editor box accepts text, basic HTML, as well as values of form fields. Include them to the content by pressing on the top buttons indicating form fields.
415
+ * **URL.** Configure redirection from your forms to any page with this action after submission. Mark URL option, then provide the absolute path of the link to the input that appears.
416
+
417
+ = What verification methods does Form Maker use? =
418
+
419
+ Form Maker uses modern verification methods, such as ReCaptcha and invisible ReCaptcha. Please note that will need to obtain ReCaptcha keys to use these options. Otherwise you can use Simple Captcha and Arithmetical Captcha which use standard word verification and arithmetical expressions respectively.
420
+
421
+ = Can I use Form Maker to create a registration form? =
422
+
423
+ You can register users on your website with the help of Form Maker WordPress Registration Extension ( [Available in Plugins Bundle](https://10web.io/plugins/wordpress-form-maker/#product_pricing) ). Install the Extension and use it alongside the free version of Form Maker plugin.
424
+
425
+ You are able to ask users to provide username, email address and password for their account. The registration of users is done upon completing the form created by this visual form builder plugin.
426
+
427
+ = Is it possible to publish a contact form as a widget? =
428
+
429
+ You can publish your form not only using **Display Options** of the web form builder tool, but also as a widget. Go to **Appearance > Widgets** page to place your form on any widget area of your website theme.
430
+
431
+ Search for **Form Maker widget** and drag it to the widget area where you wish to place your form. Specify a **Title** for the widget and choose the form you wish to publish. Press **Save** after making these changes.
432
+
433
+ = Can the form submissions be shown to site visitors? =
434
+
435
+ **Premium version** of Form Maker plugin allows you to publish submissions on front-end of your website.
436
+
437
+ This form creator plugin lets you select user roles which will be able to view the published submissions. This can be done from **Form Options > General Options** section. Also, in the same section, you are able to choose fields to hide from front-end submissions.
438
+
439
+ Firstly, add/edit the page or post, where you wish to publish the submissions of form. Then press **Add Submission** button from the top of the post editor.
440
+
441
+ **Select a Form.** Use this drop-down to choose the form, submissions of which you would like to publish.
442
+
443
+ **Select Date Range.** You can display form submissions from a specific date range. Use this option to select **From** and **To** dates.
444
+
445
+ **Select fields.** Use this option to choose which columns to show on the form. Uncheck the options, which you need to hide on front-end submissions.
446
+
447
+ **Export to / Show.** These two settings are responsible for showing the rest of the attributes of front-end submissions. You can enable/disable **CSV/XML** export buttons, **Statistics, Views, Conversion Rate** and other additional information.
448
+
449
+ After configuring all necessary options, press **Insert.** Publish your page with form submissions, and you will be able to view them on front-end.
450
+
451
+ = Can I let users choose between PayPal or offline payments when submitting the form? =
452
+
453
+ **Premium version** of this handy forms plugin has the features and functions to create PayPal forms. You need to use **Conditional Fields** and **Payment Fields** of the plugin. Here are the necessary steps.
454
+
455
+ Firstly, add one **Single Choice** field from **Basic Fields** of Form Maker plugin. It should contain the following two options:
456
+
457
+ * Pay with PayPal
458
+ * Pay offline
459
+
460
+ Afterwards, add two sets of almost identical fields, one of them created with regular form fields, second - with **Payment fields.**
461
+
462
+ Then you can set conditions from **Form Options > Conditional Fields,** if the user chooses PayPal, payment fields will appear, otherwise, regular fields will.
463
+
464
+ The user will not be redirected to PayPal if they make their selections using regular form fields.
465
+
466
+ = How can a migrate Form Maker from one site to another? =
467
+
468
+ If you want to migrate Form Maker database tables from one WordPress site to another, you need to follow the instructions below.
469
+
470
+ *Please uninstall Form Maker if you have it installed on your second site first, then proceed with these steps:*
471
+
472
+ **On your first WordPress site:**
473
+
474
+ 1. Go to **PHPMyAdmin** of your site,
475
+ 2. open your WordPress site database,
476
+ 3. select **Export** menu item,
477
+ 4. change the radio button from **Quick** to **Custom,**
478
+ 5. unselect all tables and select the following 7 tables:
479
+
480
+ *[wp1_prefix]_formmaker*
481
+ *[wp1_prefix]_formmaker_blocked*
482
+ *[wp1_prefix]_formmaker_query*
483
+ *[wp1_prefix]_formmaker_sessions*
484
+ *[wp1_prefix]_formmaker_submits*
485
+ *[wp1_prefix]_formmaker_themes*
486
+ *[wp1_prefix]_formmaker_views*
487
+
488
+ (where **[wp1_prefix]** is your WordPress database prefix)
489
+
490
+ 6. scroll all the way down and press the **Go** button. This should export an SQL file containing those 7 tables.
491
+
492
+ **On your second WordPress site:**
493
+
494
+ 7. Go to your WordPress database,
495
+ 8. select **Import** menu item,
496
+ 9. browse for the exported SQL file,
497
+ 10. scroll all the way down and press **Go** button. This should import Form Maker tables to your WordPress database.
498
+
499
+ Now you need to change the prefix for those tables to the one that is set for your second WordPress database.
500
+
501
+ 11. Select **[wp1_prefix]_formmaker** table from the left pane of PHPMyAdmin of your second WordPress database,
502
+ 12. select **Operations** menu item from the top menu
503
+ 13. scroll to **Table Options** box and edit the value of **Rename table to** field with the second WordPress database prefix, so that the table name now looks like this: **[wp2_prefix]_formmaker** (where **[wp2_prefix]** is your second WordPress database prefix)
504
+ 14. do the same for other 6 tables.
505
+ 15. go to your second WordPress administration panel and install the Form Maker.
506
+
507
+ That's it! Now you should have your forms, submissions, and themes all set up.
508
+
509
+ = Characters in the submission CSV file do not appear correctly. How can I fix this? =
510
+
511
+ Please note, that this problem is not caused by Form Maker plugin. It is rather a formatting issue in Excel. However, you can prevent it the following way:
512
+
513
+ * Please open a new Microsoft Excel document first. Then go to **Data** tab from the menu and click on **From Text.**
514
+ * Choose the CSV file you need to view. You'll see a pop-up window with several options, you'll find the **File Origin** option along with them.
515
+ * Please select **Unicode (UTF-8)** for this dropdown and click **Next** if you need to edit other options, or just **Finish** to insert the document.
516
+
517
+ The special characters in the CSV submissions of your contact forms should appear correctly afterwards.
518
+
519
+ = I do not receive any submission emails of my forms. How can this be fixed? =
520
+
521
+ This might be a problem related to the hosting configurations of your website. You can check that the following way.
522
+
523
+ Please install [WP SMTP](https://wordpress.org/plugins/wp-smtp/) plugin and go to **Settings > WP SMTP** page. Scroll down to the bottom and send a test mail to your email address.
524
+
525
+ If the test email will be sent, then the issue is triggered by Form Maker plugin. Please contact [10Web Customer Care at WordPress.org Support Forums](https://wordpress.org/support/plugin/form-maker/). Our developers will have a closer look.
526
+
527
+ But if the test mail fails, the problem is on the server of your website. Please contact your hosting provider in this case, and ask them to enable mail functions on your site.
528
+
529
+ = My forms do not submit due to Javascript errors. How can they be eliminated? =
530
+
531
+ This problem could be related to permission settings of Form Maker files on your web server. Please check that the following way.
532
+
533
+ Connect to your website files via FTP connection and open the following two directories:
534
+
535
+ *wp-content/uploads/form-maker-frontend/js/*
536
+ *wp-content/uploads/form-maker-frontend/css/*
537
+
538
+ Please make sure all **.css** and **.js** files in these folders have their permissions set to **777.**
539
+
540
+ If the permissions are correct, please do not hesitate to contact [10Web Customer Care at WordPress.org Support Forums](https://wordpress.org/support/plugin/form-maker/).
541
+
542
+ = Is it possible to pass parameters from the page URL to form fields? =
543
+
544
+ To fill in values of parameters from a URL into Form Maker fields, it is necessary to implement a custom script. Please navigate to **Form Options > Javascript** page and add the following code inside **before_load()** function:
545
+
546
+ `function getParameterByName(name, url) {
547
+ if (!url) {
548
+ url = window.location.href;
549
+ }
550
+ name = name.replace(/[[]]/g, "$&");
551
+ var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
552
+ results = regex.exec(url);
553
+ if (!results) return null;
554
+ if (!results[2]) return '';
555
+ return decodeURIComponent(results[2].replace('/+/g', " "));
556
+ }
557
+ jQuery("#{{field_id}}").val(getParameterByName("{{param_name}}"));
558
+ jQuery("#{{field_id}}").attr("class", "input_active");`
559
+
560
+ Where **{{field_id}}** is the ID of the field you wish to prefill. Also, **{{param_name}}** is the name of the parameter in the URL.
561
+
562
+
563
+ == Changelog ==
564
+
565
+ = 1.13.35 =
566
+ * Fixed: Bug on Google reCapthcha.
567
+ * Fixed: Bug on selecting options from database.
568
+
569
+ = 1.13.34 =
570
+ * Added: Option to limit the number of submissions.
571
+ * Added: Functionality to add placeholders in a redirect URL after submitting.
572
+ * Added: Croatian kuna and Pakistani Rupee to currencies list.
573
+ * Fixed: Cases when js files are blocked from htaccess.
574
+ * Fixed: Saving the theme with empty lines in Custom CSS.
575
+ * Fixed: 'Other' option from multiple-choice as a conditional field.
576
+ * Fixed: GDPR Checkbox in Internet Explorer 11.
577
+ * Fixed: Error message for File upload field.
578
+
579
+ = 1.13.33 =
580
+ * Removed: Dismissable notification about new offer by 10Web.
581
+
582
+ = 1.13.32 =
583
+ * Added: Dismissable notification about new offer by 10Web.
584
+
585
+ = 1.13.31 =
586
+ * Fixed: Bug on Google reCapthcha v3.
587
+ * Fixed: Upload file broken link in post content (Post Generation extension).
588
+
589
+ = 1.13.30 =
590
+ * Improved: Security.
591
+ * Fixed: Make Slider field to work with floating steps.
592
+ * Fixed: Paypal checkout with empty quantity.
593
+ * Fixed: Labels ordering after page drag&drop.
594
+
595
+ = 1.13.29 =
596
+ * Removed: Banner to install Image optimizer.
597
+
598
+ = 1.13.28 =
599
+ * Fixed: Statistics for multiple choice logic.
600
+
601
+ = 1.13.27 =
602
+ * Added: Option to disable shake effect on error.
603
+ * Fixed: Multiple choice fields styles on IE11.
604
+ * Fixed: Show error message for blocked IPs.
605
+ * Fixed: Do not show deleted fields in placeholders list.
606
+
607
+ = 1.13.26 =
608
+ * Fixed: Uploaded file url in email.
609
+
610
+ = 1.13.25 =
611
+ * Fixed: Issue with saving a form with non Unicode characters.
612
+
613
+ = 1.13.24 =
614
+ * Fixed: Minor bug.
615
+
616
+ = 1.13.23 =
617
+ * Added: Flush Rewrite Rules for multisite.
618
+ * Added: South Sudan to Address and Country List fields.
619
+ * Improved: Include Google Fonts only if used by a form on that page.
620
+ * Fixed: + sign in Regular Expressions.
621
+ * Fixed: Recaptcha with AJAX submit.
622
+ * Fixed: Row maximum width.
623
+ * Fixed: Placeholder text color.
624
+ * Fixed: PHP validation issue on an empty non-required email field.
625
+
626
+ = 1.13.22 =
627
+ * Added: New Extension: Form Maker Webhooks.
628
+ * Added: Message about missing Stripe keys.
629
+ * Improved: Email field validation for Cyrillic.
630
+ * Fixed: Allow + sign in password for connecting to remote DB in MySQL mapping.
631
+
632
+ = 1.13.21 =
633
+ * Added: "Custom text" in "Action after submission" for not embedded forms.
634
+ * Improved: Generated JS/CSS files fallback.
635
+ * Changed: Do not show confirmation alert on deleting empty columns.
636
+ * Fixed: Submitting a form with a value equal to the placeholder.
637
+ * Fixed: Recaptcha load issue with slow internet.
638
+ * Fixed: Show the unpublished form message only to the administrator.
639
+ * Fixed: Pagination styles for Form Maker admin pages.
640
+ * Fixed: Importing submissions of multiple forms at once.
641
+ * Fixed: Saving IP on "Block IPs" page.
642
+ * Fixed: Shortcode buttons behavior in Text widget of Divi Builder.
643
+ * Fixed: Condition with line break in Textarea default value.
644
+ * Fixed: Upload file URL in the email when Save Uploads is disabled.
645
+
646
+ = 1.13.20 =
647
+ * Added: Ask a question button.
648
+
649
+ = 1.13.19 =
650
+ * Removed: Webinar banner.
651
+
652
+ = 1.13.18 =
653
+ * Fixed: Conflict with common mod_security rules.
654
+
655
+ = 1.13.17 =
656
+ * Fixed: Spam protection.
657
+ * Fixed: Counting form views.
658
+ * Fixed: Error message on submitting form with existing username.
659
+
660
+ = 1.13.16 =
661
+ * Added: Webinar banner.
662
+
663
+ = 1.13.15 =
664
+ * Added: Use AJAX to submit forms (optional).
665
+ * Added: Additional spam protection (optional).
666
+ * Updated: PO files.
667
+ * Improved: Email delivery functionality.
668
+ * Fixed: Disable the submit button with deactivated Privacy options.
669
+ * Fixed: Empty time field in Submissions.
670
+ * Fixed: Recaptcha responsiveness.
671
+ * Fixed: Do not include dashicons to front.
672
+
673
+ = 1.13.14 =
674
+ * Fixed: Action after submission for cached pages.
675
+
676
+ = 1.13.12 =
677
+ * Added: "Get Free Ebook" page on activation.
678
+ * Added: Integration with reCaptcha v3.
679
+ * Added: Fields placeholder functionality for Email to Admin.
680
+ * Fixed: Disable auto fill for Date field.
681
+ * Fixed: Pagination.
682
+ * Changed: Banner text.
683
+
684
+ = 1.13.10 =
685
+ * Fixed: Page title in progress bar.
686
+ * Fixed: Option for selecting posts/pages to display Popup, Topbar, and Scrollbox forms.
687
+
688
+ = 1.13.9 =
689
+ * Fixed: Issue with saving themes.
690
+
691
+ = 1.13.8 =
692
+ * Fixed: Form submit bug.
693
+
694
+ = 1.13.7 =
695
+ * Added: Support for 'all' placeholder in actions after submission.
696
+ * Added: Provinces for Canada.
697
+ * Improved: Spam protection.
698
+ * Improved: Minify js, css.
699
+ * Changed: Some country names.
700
+ * Fixed: Two required "Table of fields" fields on a page.
701
+ * Fixed: Error on uninstalling from multisite.
702
+ * Fixed: Preview in themes edit page.
703
+ * Fixed: User guide links for tabs in form edit page.
704
+ * Fixed: Empty Simple Captcha input after form reset.
705
+ * Fixed: Remove unnecessary container from placeholders popup.
706
+
707
+ = 1.13.6 =
708
+ * Fixed: Payment info is not retrieved.
709
+
710
+ = 1.13.5 =
711
+ * Fixed: CSRF issue.
712
+ * Added: Banner to install 10Web manager.
713
+
714
+ = 1.13.4 =
715
+ * Fixed: Vulnerability on submissions page.
716
+
717
+ = 1.13.3 =
718
+ * Added: Functionality to add placeholders in "Select options from database" Where selector.
719
+ * Added: Functionality to use "Star rating" as a condition.
720
+ * Fixed: Security issue.
721
+ * Fixed: Link for attachment in email.
722
+ * Fixed: Allow "0" value for required fields.
723
+ * Fixed: Don't use the same title for the duplicated form.
724
+ * Fixed: Adding field to incorrect position.
725
+ * Fixed: Scroll to required address field.
726
+ * Fixed: Broken multiple pages.
727
+ * Fixed: MySQL mapping edit functionality.
728
+ * Fixed: Multisite support for add-ons.
729
+ * Fixed: Saving advanced layout.
730
+ * Fixed: 0 value is not saved in submissions for Payment single choice and Shipping fields.
731
+
732
+ = 1.13.2 =
733
+ * Changed: Links to 10Web.io.
734
+
735
+ = 1.13.1 =
736
+ * Fixed: Bug on checking if Address field is required.
737
+
738
+ = 1.13.0 =
739
+ * Added: Enable/Disable option for Form header.
740
+ * Added: Tax option for Stripe payments.
741
+ * Added: "Class name" option for "Single Line Text" field to allow add a css class for the field.
742
+ * Added: "Palestine" to country list field.
743
+ * Changed: Form editing page layout.
744
+ * Changed: Form Revisions functionality.
745
+ * Changed: Settings (Form Options) tab new design.
746
+ * Changed: Form Publishing tab new design.
747
+ * Changed: Selecting a Theme moved to Appearance.
748
+ * Changed: Make email options a separate tab.
749
+ * Changed: Remove required mark color from "Default" and "Inherit from site" themes.
750
+ * Changed: Inherit styles (font, color) from Elementor for Form maker widget.
751
+ * Fixed: Try to reproduce, try/catch curl part of code.
752
+ * Fixed: Requirement of table field should be affected on all rows of it.
753
+ * Fixed: The Like/Starting With options in WHERE of Select options from Database.
754
+ * Fixed: Remove the link of the word "Privacy Policy" when there is no Privacy Policy page.
755
+ * Fixed: Styles for rtl languages.
756
+ * Fixed: Addons settings for duplicated forms.
757
+ * Fixed: Required validation not allow space.
758
+ * Fixed: Error when clicking allow or skip to collect some usage data more then once.
759
+
760
+ = 1.12.42 =
761
+ * Fixed: Remove the link from "Privacy Policy" text in the form when there is no Privacy Policy page.
762
+
763
+ = 1.12.41 =
764
+ * Added: WHERE selectors in "Options from database" (Select, Single and Multiple choice fields).
765
+ * Added: Placeholders (User ID, Submitter's IP, etc.) in WHERE clause in "Options from database" and MySQL Mapping.
766
+ * Improved: Parsing images in post content in Post Generation extension.
767
+ * Improved: Automatically deactivate plugin after uninstall.
768
+ * Fixed: Scroll issues on Safari (MacOS).
769
+ * Fixed: "Receive Copy" field checkbox with Form maker some themes.
770
+ * Fixed: "Custom text" after form submit.
771
+
772
+ = 1.12.39 =
773
+ * Added: Drag & Drop of Columns in form editor
774
+ * Added: Drag & Drop of Pages in form editor
775
+ * Added: New icon in Elementor plugin
776
+ * Improved: Drag & Drop of fields in form editor
777
+ * Fixed: Conditional fields flickering during page loading
778
+
779
+ = 1.12.38 =
780
+ * Improved: GDPR compliance options.
781
+ * Added: Step option for slider field.
782
+ * Fixed: Error on form front end when Privacy Policy checkbox is enabled.
783
+ * Fixed: Bug on Actions after submission when Redirect to URL option is empty.
784
+ * Fixed: Notice on form submit.
785
+ * Fixed: Minor issues on Themes.
786
+
787
+ = 1.12.37 =
788
+ * Fixed: Compatibility with PHP version 5.3.
789
+
790
+ = 1.12.36 =
791
+ * Improved: Uninstall Form Maker interface and texts.
792
+ * Fixed: "New Form Field" button drag and drop issue in Firefox and Safari.
793
+ * Fixed: Do not show hidden amounts in total.
794
+ * Fixed: Failed to import form submissions when there is a single quote in the form title.
795
+ * Fixed: Can not submit contact form when there is a condition on stripe field and stripe is not visible.
796
+ * Added: GDPR compliance required checkbox on the front end.
797
+ * Added: Warn user if the email address does not belong to the site domain.
798
+
799
+ = 1.12.35 =
800
+ * Fixed: PDF should be generated even if sending emails is off.
801
+ * Fixed: Form field validation issues on multi-page forms.
802
+ * Fixed: Issue with Exporting/Importing a form with special characters in header.
803
+
804
+ = 1.12.34 =
805
+ * Added: Additional security check to block form submissions from bots.
806
+ * Improved: Submissions CSV/XML export for bigger forms.
807
+ * Improved: Rendering of forms in Elementor front-end builder preview.
808
+ * Improved: Optimized the back end Scripts and CSS for faster loading.
809
+ * Fixed: Form Submissions page responsiveness issue on mobile devices.
810
+
811
+ = 1.12.33 =
812
+ * Added: Option to enable/disable WP Editor.
813
+ * Added: Additional security checks against bots.
814
+ * Changed: Form field validation on form options page.
815
+ * Fixed: Error on deactivation.
816
+ * Fixed: Port for connecting to a remote Database with SQL mapping.
817
+ * Fixed: Displaying Form on all posts instead of the selected.
818
+ * Fixed: Filled values of payment form fields should not be lost on an error.
819
+ * Fixed: Form is not saved if you click Publish before the page is loaded.
820
+ * Fixed: Table of fields validation on form submission.
821
+ * Fixed: Add shortcode functionality on Beaver, Elementor, SiteOrigin and Visual Composer builders.
822
+ * Fixed: If you Sort/Filter the data via some column, then hit next page button, the sort reverts to the default sort order.
823
+ * Fixed: Select all in Submissions should apply to the current page only.
824
+ * Fixed: Do not change the page after IP block in submissions page.
825
+ * Fixed: Do not change the page after deleting submission in submissions page.
826
+
827
+ = 1.12.32 =
828
+ * Fixed: Include styles/scripts on form pages only.
829
+
830
+ = 1.12.31 =
831
+ * Improved: CSV, XML export.
832
+ * Improved: default email design
833
+ * Improved: Minor improvements in email options
834
+ * Fixed: PHP validation for email.
835
+ * Fixed: Preserve the list of columns displayed when changing the page.
836
+ * Fixed: Do not display ScrollBox form after Successful submission.
837
+
838
+ = 1.12.30 =
839
+ * Changed: Separate buttons for deactivation.
840
+
841
+ = 1.12.29 =
842
+ * Fixed: Bug on empty values for some form field types.
843
+
844
+ = 1.12.28 =
845
+ * Added: Custom javascript event, occurs after form is submitted.
846
+ * Changed: Code structure refactoring.
847
+ * Fixed: Bug on required form fields PHP validation.
848
+ * Fixed: Bug on saving a theme.
849
+
850
+ = 1.12.27 =
851
+ * Added: Help and suggestions text for Privacy Policy (for GDPR compliance)
852
+ * Added: Privacy related text to readme.
853
+
854
+ = 1.12.26 =
855
+ * Fixed: Vulnerabilities reported by Neven Biruski from DefenseCode (using the tool ThunderScan).
856
+ * Fixed: "The loopback request to your site failed" error.
857
+
858
+ = 1.12.25 =
859
+ * Changed: Updated translations.
860
+ * Added: Gutenberg integration.
861
+ * Fixed: Required mark for "Receive Copy" form field.
862
+ * Fixed: Bug on selecting options from database.
863
+
864
+ = 1.12.24 =
865
+ * Minor fix: an incorrect link
866
+
867
+ = 1.12.23 =
868
+ * Improved: Insert placeholder functionality.
869
+ * Fixed: Action after submission text for popup forms.
870
+ * Fixed: Do not allow negative numbers as quantity.
871
+ * Added: Loading for add-ons options.
872
+ * Added: Premium version page new style.
873
+ * Added: Add-ons page new style.
874
+ * Fixed: Submission id bug.
875
+ * Fixed: Security issue reported by Sairam Jetty.
876
+
877
+ = 1.12.22 =
878
+ * Fixed: Security issue with CSV export.
879
+
880
+ = 1.12.21 =
881
+ * Changed: DB field length.
882
+
883
+ = 1.12.20 =
884
+ * Added: New file types for Form Maker file upload form field.
885
+ * Improved: Editing empty mini labels.
886
+ * Fixed: Form Submissions CSV export.
887
+
888
+ = 1.12.19 =
889
+ * Fixed: Form Submissions table view for long texts.
890
+ * Fixed: Displaying phone field value in form email notification.
891
+ * Fixed: Bug on deleting a Page break.
892
+
893
+ = 1.12.18 =
894
+ * Changed: improved Form Submissions view: added tooltips for long labels of form fields.
895
+ * Added: detailed descriptions of form fields inside the form editor
896
+ * Fixed: UTF-8 text in Email body.
897
+
898
+ = 1.12.17 =
899
+ * Fixed: UTF-8 text for Email subject and Email from name.
900
+
901
+ = 1.12.16 =
902
+ * Improved: Email functionality of Form Maker.
903
+ * Fixed: Multiple choice and single choice with long labels.
904
+ * Fixed: Form submissions CSV export with UTF-8 encoding.
905
+
906
+ = 1.12.15 =
907
+ * Fixed: Error on adding a form field.
908
+
909
+ = 1.12.14 =
910
+ * Fixed: Form submissions page.
911
+
912
+ = 1.12.13 =
913
+ * Fixed: Bug on Popup forms on mobile.
914
+ * Fixed: Major bug.
915
+ * Fixed: Exclude Stripe field from submissions export.
916
+ * Fixed: "Custom HTML" field label in conditional fields list.
917
+ * Fixed: Edit table of form fields in submissions.
918
+ * Fixed: Trim data inserted by MySQL mapping.
919
+ * Fixed: Default values for payment multiple and payment single choices.
920
+ * Changed: Prevent default on form enter.
921
+
922
+ = 1.12.12 =
923
+ * Changed: Improved query to get number of form submissions.
924
+ * Changed: Email field length in DB.
925
+
926
+ = 1.12.11 =
927
+ * Fixed: Form preview does not show with widget on page with some Wordpress themes.
928
+ * Fixed: Do not check conditionally hidden required fields.
929
+ * Fixed: Not embedded forms do not show on form preview page.
930
+ * Fixed: Post/page search on display options pages.
931
+ * Fixed: Tooltip in "Add query" popup.
932
+ * Fixed: Insert demo forms only on activate.
933
+ * Changed: Edit country list popup design.
934
+ * Fixed: Emailing fields with apostrophes in label.
935
+ * Fixed: Popup forms background.
936
+ * Changed: Czech translation.
937
+ * Changed: Italian translation.
938
+ * Fixed: Matrix field in email.
939
+ * Changed: Disable widget in preview page.
940
+ * Fixed: Widget functionality with Contact Form Maker.
941
+ * Fixed: Form Maker user manual links.
942
+ * Fixed: Default values for multiple and single choices.
943
+ * Fixed: Add new theme.
944
+ * Fixed: Redirect from Paypal.
945
+
946
+ = 1.12.10 =
947
+ * Fixed: a minor bug.
948
+
949
+ = 1.12.9 =
950
+ * Fixed: Date range field buttons position.
951
+ * Fixed: Forms count in backend.
952
+ * Fixed: Placeholder notice with password fields.
953
+ * Added: Puerto Rico, Wales to country list.
954
+
955
+
956
+ = 1.12.8 =
957
+ * Updated: WD Library.
958
+ * Updated: Support forum link.
959
+
960
+ = 1.12.7 =
961
+ * Added: Invisible reCAPTCHA.
962
+ * Improved: Compatibility with Contact Form Maker.
963
+ * Improved: Stripe add-on styles.
964
+ * Fixed: Some frontend styles.
965
+ * Fixed: Fields width in forms manage page.
966
+ * Changed: Field edit buttons place.
967
+
968
+ = 1.12.6 =
969
+ * Added: Full width functionality for fields.
970
+ * Added: New Default Theme.
971
+ * Added: Support forum and Review links.
972
+ * Changed: Date field calendar icon.
973
+ * Changed: Field manage functionality.
974
+ * Changed: jQuery-UI styles.
975
+ * Changed: Three form changed in new formats.
976
+ * Improved: Responsiveness.
977
+ * Fixed: Time, Date of Birth and Number fields validation also on mobile.
978
+ * Fixed: Scroll to field on error.
979
+ * Fixed: Right to left styles.
980
+ * Fixed: Conflict with Yoast SEO plugin.
981
+
982
+ = 1.12.5 =
983
+ * Added: Hong Kong to country list.
984
+ * Fixed: List of US states.
985
+
986
+ = 1.12.4 =
987
+ * Changed: Email validation field now allows + symbol
988
+ * Changed: Remove Font Awesome.
989
+ * Changed: Italian translation.
990
+
991
+ = 1.12.3 =
992
+ * Fixed: Get editor by id instead of active.
993
+ * Fixed: Not found form id redirect to main page.
994
+
995
+ = 1.12.2 =
996
+ * Fixed: Border types bug
997
+ * Fixed: Bug with PayPal IPN
998
+ * Fixed: Date format synchronization with Save Progress add-on
999
+
1000
+ = 1.12.1 =
1001
+ * Changed: Add field button design.
1002
+ * Added: Show popup notice to install Backup WD plugin.
1003
+
1004
+ = 1.12.0 =
1005
+ * Changed: Improved user interface of forms, submissions and options.
1006
+ * Changed: Separated field types into Basic, User Info, Layout, Advanced and Payment sections.
1007
+ * Changed: Simplified the structure of Form Options tabs.
1008
+ * Added: Drag and Drop builder button.
1009
+
1010
+ = 1.11.11 =
1011
+ * Fixed: Conflict with Jetpack Contact Form module.
1012
+
1013
+ = 1.11.8 =
1014
+ * Updated: WD Library.
1015
+
1016
+ = 1.11.7 =
1017
+ * Fixed: Theme version control.
1018
+
1019
+ = 1.11.6 =
1020
+ * Fixed: Shortcode editor pop-up styles.
1021
+ * Fixed: Scripts enqueue in Manage Forms page.
1022
+ * Fixed: MySQL Mapping fields list scrolling.
1023
+
1024
+ = 1.11.5 =
1025
+ * Fixed: Bug on CSV/XML export.
1026
+ * Fixed: Google maps api conflict with other plugins.
1027
+ * Changed: Improved Matrix type field view in submissions.
1028
+ * Fixed: File upload field styles with "Inherit from website theme".
1029
+
1030
+ = 1.11.4 =
1031
+ * Fixed: Bug on color picker when choosing transparency
1032
+ * Fixed: Bug on submissions edit
1033
+ * Fixed: Bug on "Inherit from website" theme
1034
+ * Fixed: Bug on Paypal notifications
1035
+ * Changed: Form Options tab id to avoid conflict with some plugins
1036
+
1037
+
1038
+ = 1.11.3 =
1039
+ * Added: Global option to enable Advanced Layout
1040
+ * Changed: Themes table field name: `params` to `css`
1041
+ * Fixed: Bug on PHP 5.2
1042
+ * Fixed: Uninstall bug in free version
1043
+ * Fixed: bug on generating Theme css
1044
+ * Fixed: CSS conflict with some ajax themes
1045
+
1046
+ = 1.11.2 =
1047
+ * Added: Overview page
1048
+ * Removed: Featured Plugins, Featured Themes pages
1049
+ * Fixed: Security issue
1050
+ * Fixed: Themes - bug on save as copy
1051
+
1052
+
1053
+ = 1.11.1 =
1054
+ * Removed: Old forms support (created with Form Maker versions < 1.7.0)
1055
+ * Added: Form Header
1056
+ * Added: New Themes
1057
+ * Added: New Theme Editor
1058
+ * Added: Form Display Options (Embedded, Popup, Topbar, Scrollbox)
1059
+ * Fixed: Database creation on some versions of MySQL
1060
+ * Fixed: Removed html tags from csv and xml
1061
+
1062
+ = 1.10.11 =
1063
+ * Added: Support forum links.
1064
+
1065
+ = 1.10.10 =
1066
+ * Fixed: Bug on arithmetic captcha
1067
+
1068
+ = 1.10.9 =
1069
+ * Changed: New logo
1070
+
1071
+ = 1.10.8 =
1072
+ * Added: New form field type: Phone with flag
1073
+ * Fixed: Bug on captcha reset
1074
+
1075
+ = 1.10.7 =
1076
+ * Changed: Improved captcha security
1077
+ * Fixed: Bug on matrix field
1078
+ * Fixed: Bug on conditional fields (for date field)
1079
+ * Added: Notification about old forms
1080
+
1081
+ = 1.10.6 =
1082
+ * Fixed: Bug on spinner field
1083
+ * Fixed: Bug on matrix field
1084
+
1085
+ = 1.10.5 =
1086
+ * Fixed: JS conflict on contact form submission
1087
+
1088
+ = 1.10.4 =
1089
+ * Fixed: Conflict with Yoast SEO plugin
1090
+ * Fixed: Line breaks in textarea after incorrect captcha
1091
+
1092
+ = 1.10.3 =
1093
+ * Fixed: Bug on PHP 5.3
1094
+
1095
+ = 1.10.2 =
1096
+ * Added: New Global option "Use an alternative version of JS code on front-end:". Checking this box fixes JS conflicts with some themes, that alter inline JS.
1097
+
1098
+ = 1.10.1 =
1099
+ * Added: Verified emails list in csv, xml files
1100
+
1101
+ = 1.10 =
1102
+ * Changed: Field validation errors and notifications
1103
+ * Added: Real time field validation
1104
+ * Changed: Improved NL translation
1105
+ * Fixed: Bug on verified emails
1106
+
1107
+ = 1.9.18 =
1108
+ * Added: Filter verified emails and Export submissions with verified emails
1109
+
1110
+ = 1.9.17 =
1111
+ * Fixed: Bug with search by ID in Submissions
1112
+ * Fixed: Bug with Validation (Regular Exp.)
1113
+
1114
+ = 1.9.16 =
1115
+ * Fixed: Bug with Hidden field in custom text in Email
1116
+ * Fixed: Bug on email verification custom post
1117
+ * Added: Field type in field edit page
1118
+
1119
+ = 1.9.15 =
1120
+ * Added: Password Confirmation field
1121
+
1122
+ = 1.9.14 =
1123
+ * Fixed: Bug on CSV and XML export
1124
+
1125
+ = 1.9.13 =
1126
+ * Fixed: Bug on Field label position (Left/Top)
1127
+ * Fixed: JS error on IE 11 and Microsoft Edge
1128
+
1129
+ = 1.9.12 =
1130
+ * Added: Email Confirmation field
1131
+ * Fixed: Bug on CSV and XML export
1132
+
1133
+ = 1.9.11 =
1134
+ * Changed: Filters now apply to CSV and XML export
1135
+
1136
+ = 1.9.10 =
1137
+ * Fixed: Bug on "Advanced Layout"
1138
+
1139
+ = 1.9.9 =
1140
+ * Changed: Featured plugins page
1141
+
1142
+ = 1.9.8 =
1143
+ * Fixed: Unexpected behavior on pressing "Enter" key on back end form creator page
1144
+
1145
+ = 1.9.7 =
1146
+ * Fixed: JS error on incorrect Google Maps API key
1147
+ * Added: Alert about incorrect Google Maps API key
1148
+
1149
+ = 1.9.6 =
1150
+ * Added: Global option for Google Maps API key
1151
+ * Fixed: Google Maps API key warning in browser
1152
+
1153
+ = 1.9.5 =
1154
+ * Changed: Improvements in "Select options from database" pop-up window for Select box, single and multiple choices
1155
+ * Fixed: Back end minor style issues
1156
+
1157
+ = 1.9.3 =
1158
+ * Fixed: Bug with Date field in custom text in Email
1159
+ * Fixed: Bug on editing submissions with checkbox and radio fields with customized values
1160
+
1161
+ = 1.9.2 =
1162
+ * Added: "View" button on submissions to open a single submission in a separate pop-up window
1163
+ * Fixed: Minor bugs on editing submissions
1164
+
1165
+ = 1.9.1 =
1166
+ * Fixed: bug on date field on some browsers (Safari, Edge)
1167
+
1168
+ = 1.9 =
1169
+ * Changed: Improved Date picker functionality (new options: Dates to exclude, Default, Minimum, Maximum dates)
1170
+ * Added: New field type: Date Range
1171
+
1172
+ = 1.8.41 =
1173
+ * Fixed: Bug on conditional fields (for multiple contact forms on the same page)
1174
+
1175
+ = 1.8.40 =
1176
+ * Changed: Style of required field asterisk
1177
+ * Changed: Display the correct IDs and Names of the fields in the back end (Add/Edit field interface) to use in js/css
1178
+
1179
+ = 1.8.39 =
1180
+ * Fixed: Bug on Matrix field (additional attributes)
1181
+
1182
+ = 1.8.38 =
1183
+ * Fixed: Bug on Matrix field (special characters in row/column labels)
1184
+
1185
+ = 1.8.36 =
1186
+ * Fixed: Bug on long content in textarea fields
1187
+
1188
+ = 1.8.35 =
1189
+ * Fixed: Browser warning on Google Maps API version
1190
+ * Fixed: Phone field style issue on Mac OS
1191
+
1192
+ = 1.8.34 =
1193
+ * Fixed: Some minor style issues
1194
+
1195
+ = 1.8.33 =
1196
+ * Fixed: Bug in Address field
1197
+ * Fixed: Bug with Additional Attributes in Email field
1198
+ * Changed: before_submit() function functionality
1199
+
1200
+ = 1.8.32 =
1201
+ * New Add-on: Calculator
1202
+ Removed: deprecated Number field
1203
+
1204
+ = 1.8.31 =
1205
+ * Fixed: Issue with search in Submissions page
1206
+
1207
+ = 1.8.30 =
1208
+ * Added: Submission ID in csv export
1209
+
1210
+ = 1.8.29 =
1211
+ * Changed: Featured Plugins, Featured Themes pages design.
1212
+
1213
+ = 1.8.28 =
1214
+ * Fixed: Bug in Email Options
1215
+ * Fixed: Bug in Conditional Fields
1216
+ * Fixed: Bug in date field
1217
+
1218
+ = 1.8.27 =
1219
+ * Fixed: Bug in Conditional Fields
1220
+ * Fixed: Bug with Additional Attributes in Multiple Choice
1221
+
1222
+ = 1.8.26 =
1223
+ * Fixed: Submissions page styles
1224
+ * Fixed: Issue with IPv6
1225
+
1226
+ = 1.8.25 =
1227
+ * Fixed: Bug in conditional fields.
1228
+ * Changed: Featured Plugins, Featured Themes pages design.
1229
+
1230
+ = 1.8.24 =
1231
+ * Added: File upload as a link in email
1232
+
1233
+ = 1.8.23 =
1234
+ * Fixed: Bug in textarea field with line breaks
1235
+
1236
+ = 1.8.22 =
1237
+ * Fixed: Conflict with some plugins
1238
+
1239
+ = 1.8.21 =
1240
+ * Fixed: Bug in selec tbox
1241
+
1242
+ = 1.8.20 =
1243
+ * Added: Auto fill with user data for email address and name fields
1244
+
1245
+ = 1.8.19 =
1246
+ * Changed: Back End design
1247
+
1248
+ = 1.8.18 =
1249
+ * Added: Date format validation
1250
+ * Fixed: Recaptcha Validation bug
1251
+
1252
+ = 1.8.17 =
1253
+ * Added: Global Options
1254
+
1255
+ = 1.8.16 =
1256
+ * Fixed: User guide links
1257
+
1258
+ = 1.8.15 =
1259
+ * Changed: Back End Design for old forms
1260
+
1261
+ = 1.8.14 =
1262
+ * Fixed: Bug in PayPal field
1263
+ * Changed: Matrix field display in email
1264
+
1265
+ = 1.8.13 =
1266
+ * Fixed: Style in form builder edit page
1267
+ * Fixed: Bug in PayPal options
1268
+
1269
+ = 1.8.12 =
1270
+ * Changed: Submissions page styles
1271
+
1272
+ = 1.8.11 =
1273
+ * New Add-on: Stripe Integration
1274
+
1275
+ = 1.8.10 =
1276
+ * Fixed: Bug in name field
1277
+ * Fixed: Bug in captcha
1278
+
1279
+ = 1.8.9 =
1280
+ * New Add-on: Save Progress
1281
+
1282
+ = 1.8.8 =
1283
+ * Fixed: Minor bug
1284
+
1285
+ = 1.8.7 =
1286
+ * New: New year promo
1287
+
1288
+ = 1.8.6 =
1289
+ * Changed: Reset button
1290
+ * Fixed: Bug with scrolling in new field pop up
1291
+ * Fixed: Bug in MySql mapping on firefox browser
1292
+
1293
+ = 1.8.5 =
1294
+ * Fixed: Bug in mysql mapping.
1295
+ * Changed: Featured themes page.
1296
+
1297
+ = 1.8.4 =
1298
+ * Fixed: Bug in submissions
1299
+
1300
+ = 1.8.3 =
1301
+ * Changed: Backend design
1302
+
1303
+ = 1.8.2 =
1304
+ * New Add-on: Pushover Integration
1305
+
1306
+ = 1.8.1 =
1307
+ * Fixed: Bug in email options
1308
+ * Changed: Backend design
1309
+
1310
+ = 1.8.0 =
1311
+ * Changed: Backend design
1312
+
1313
+ = 1.7.97 =
1314
+ * Fixed: Bug in CSV/XML export
1315
+
1316
+ = 1.7.96 =
1317
+ * Added: Preview button
1318
+ * Changed: Conditional fields limitation
1319
+
1320
+ = 1.7.95 =
1321
+ * Changed: csv/xml export file directory
1322
+
1323
+ = 1.7.94 =
1324
+ * Added: Progress bar for csv/xml export
1325
+
1326
+ = 1.7.93 =
1327
+ * Fixed: Bug in mailing
1328
+ * Changed: Calendar styles
1329
+
1330
+ = 1.7.92 =
1331
+ * Fixed: Bug in mailing
1332
+
1333
+ = 1.7.91 =
1334
+ * Changed: Themes
1335
+ * Fixed: Bug in block ip
1336
+
1337
+ = 1.7.90 =
1338
+ * Fixed: Bug in CSV/XML export
1339
+
1340
+ = 1.7.89 =
1341
+ * Fixed: Conflict with some plugins
1342
+ * Changed: Styles
1343
+
1344
+ = 1.7.88 =
1345
+ * New: Double scroll in submissions page
1346
+ * New: Delete confirmation
1347
+ * Fixed: Bug in mysql mapping for conditional fields
1348
+
1349
+ = 1.7.87 =
1350
+ * Fixed: Bug in CSV/XML export
1351
+
1352
+ = 1.7.86 =
1353
+ * Changed: CSV/XML export
1354
+
1355
+ = 1.7.85 =
1356
+ * Fixed: Bug in conditional fields
1357
+
1358
+ = 1.7.84 =
1359
+ * New Add-on: PDF Integration
1360
+
1361
+ = 1.7.83 =
1362
+ * New: Google Drive Integration Add-on
1363
+
1364
+ = 1.7.82 =
1365
+ * Fixed: Bug in demo forms
1366
+
1367
+ = 1.7.81 =
1368
+ * Fixed: Bug in update
1369
+
1370
+ = 1.7.80 =
1371
+ * Changed: Notices
1372
+
1373
+ = 1.7.79 =
1374
+ * Fixed: Bug in update
1375
+
1376
+ = 1.7.78 =
1377
+ * Changed: Themes
1378
+
1379
+ = 1.7.77 =
1380
+ * New: Dropbox Integration Add-on
1381
+
1382
+ = 1.7.76 =
1383
+ * Changed: Licensing/Donation page
1384
+ * Changed: Notices
1385
+
1386
+ = 1.7.75 =
1387
+ * Changed: Submissions default ordering
1388
+ * Changed: Featured Plugins page
1389
+
1390
+ = 1.7.74 =
1391
+ * Fixed: Minor bugs
1392
+
1393
+ = 1.7.73 =
1394
+ * New: Notices
1395
+
1396
+ = 1.7.71 =
1397
+ * New Add-on: Conditional Emails
1398
+
1399
+ = 1.7.70 =
1400
+ * Changed: Styles
1401
+
1402
+ = 1.7.69 =
1403
+ Minor bug fixed
1404
+
1405
+ = 1.7.68 =
1406
+ * Changed: Compatibility with WordPress 4.3
1407
+
1408
+ = 1.7.67 =
1409
+ * Fixed: Bug in slider field
1410
+ * Fixed: Bug in address field
1411
+ * Fixed: Bug in mysql mapping
1412
+
1413
+ = 1.7.66 =
1414
+ * Fixed: Bug in Undo/Redo
1415
+
1416
+ = 1.7.65 =
1417
+ * New: Post Generation Add-on
1418
+
1419
+ = 1.7.64 =
1420
+ * Fixed: Minor bug
1421
+
1422
+ = 1.7.63 =
1423
+ * New: Add-ons page logo
1424
+
1425
+ = 1.7.62 =
1426
+ * New Add-on: User Registration
1427
+
1428
+ = 1.7.61 =
1429
+ * New: Form Maker Add-ons page
1430
+
1431
+ = 1.7.60 =
1432
+ * Fixed: Minor bug
1433
+
1434
+ = 1.7.59 =
1435
+ * Fixed: Bug in csv/xml export
1436
+
1437
+ = 1.7.58 =
1438
+ * Fixed: Minor bugs
1439
+ * Added: Email verification custom post
1440
+
1441
+ = 1.7.57 =
1442
+ * Fixed: Security issue
1443
+
1444
+ = 1.7.56 =
1445
+ * New: ReCaptcha version 2.0
1446
+ * New: Arithmetic Captcha
1447
+
1448
+ = 1.7.55 =
1449
+ * New: Undo/Redo form
1450
+
1451
+ = 1.7.54 =
1452
+ bug in conditional fields fixed
1453
+
1454
+ = 1.7.53 =
1455
+ bug in select field fixed
1456
+
1457
+ = 1.7.52 =
1458
+ minor bugs fixed
1459
+
1460
+ = 1.7.51 =
1461
+ * Changed: Featured plugins page.
1462
+ * New: Featured themes page.
1463
+
1464
+ = 1.7.50 =
1465
+ minor bugs fixed
1466
+
1467
+ = 1.7.49 =
1468
+ Limited up to 7 fields to add
1469
+ Bug fixed
1470
+
1471
+ = 1.7.48 =
1472
+ bug in radio and matrix fields fixed
1473
+
1474
+ = 1.7.47 =
1475
+ Show custom html and section break id
1476
+
1477
+ = 1.7.46 =
1478
+ Limited up to 9 fields to add
1479
+ * New: Enable/Disable Title and Middle Name for Name field
1480
+
1481
+ = 1.7.45 =
1482
+ * New: Option to disable past days in date picker
1483
+
1484
+ = 1.7.44 =
1485
+ security issue fixed
1486
+
1487
+ = 1.7.43 =
1488
+ * New: Email verification
1489
+
1490
+ = 1.7.42 =
1491
+ bug in recaptcha fixed
1492
+ change links
1493
+
1494
+ = 1.7.40 =
1495
+ Allow to use entry values in "Custom text after submission"
1496
+
1497
+ = 1.7.39 =
1498
+ * New: User information in mysql mapping
1499
+ * Fixed: Country names
1500
+
1501
+ = 1.7.38 =
1502
+ bug fixed in stats
1503
+ change field value type to longtext
1504
+
1505
+ = 1.7.37 =
1506
+ Optimize csv/xml export
1507
+
1508
+ = 1.7.35 =
1509
+ * New: Email empty fields option
1510
+
1511
+ = 1.7.34 =
1512
+ * New: Validation (Regular Exp.)
1513
+ * Fixed: Select field duplication
1514
+
1515
+ = 1.7.33 =
1516
+ bug in address field fixed
1517
+
1518
+ = 1.7.32 =
1519
+ bug fixed
1520
+
1521
+ = 1.7.31 =
1522
+ Bug fixed: Hidden field save to DB.
1523
+ * New: Drag and drop options in multiple, single choices and select box.
1524
+ * New: Select options from database.
1525
+ * New: Add image in email as image.
1526
+ * New: Additional clauses within conditional fields.
1527
+ * New: Search submissions by ID.
1528
+ * New: Submission ID in email.
1529
+
1530
+ = 1.7.30 =
1531
+ Cache issue fixed
1532
+
1533
+ = 1.7.29 =
1534
+ Bug fixed: Empty email "From name".
1535
+ Bug fixed: Delete theme.
1536
+
1537
+ = 1.7.28 =
1538
+ Bug fixed: Edit submissions.
1539
+ Bug fixed: Conditional fields with quota in labels
1540
+
1541
+ = 1.7.27 =
1542
+ bug fixed in csv\xml export
1543
+
1544
+ = 1.7.26 =
1545
+ bug fixed in email content
1546
+
1547
+ = 1.7.25 =
1548
+ remove fancybox lightbox
1549
+
1550
+ = 1.7.24 =
1551
+ display php function to publish contact form
1552
+
1553
+ = 1.7.23 =
1554
+ bug in Recaptcha fixed
1555
+
1556
+ = 1.7.22 =
1557
+ Form field reordering using Drag&Drop
1558
+
1559
+ = 1.7.21 =
1560
+ wp 4.0.1 shortcode issue fixed
1561
+
1562
+ = 1.7.18 =
1563
+ pagination with input
1564
+
1565
+ = 1.7.17 =
1566
+ bug fixed in condition fields
1567
+
1568
+ = 1.7.16 =
1569
+ show submitter information in popup (Country, CountryCode, City, Latitude, Longitude)
1570
+
1571
+ = 1.7.15 =
1572
+ bug fixed
1573
+
1574
+ = 1.7.14 =
1575
+ csv, xml export mark on map
1576
+
1577
+ = 1.7.13 =
1578
+ sql mapping
1579
+
1580
+ = 1.7.12 =
1581
+ extended name edit bug fixed (if first input is empty)
1582
+
1583
+ = 1.7.11 =
1584
+ hidden field edit bug fixed
1585
+
1586
+ = 1.7.10 =
1587
+ security issue fixed
1588
+
1589
+ = 1.7.9 =
1590
+ line break in custom text in email
1591
+
1592
+ = 1.7.8 =
1593
+ bug fixed in required radio field
1594
+
1595
+ = 1.7.7 =
1596
+ bug fixed in adding new contact form
1597
+
1598
+ = 1.7.6 =
1599
+ new email options, conditional fields
1600
+
1601
+ = 1.7.5 =
1602
+ conflict with Jetpack Contact Form module fixed
1603
+
1604
+ = 1.7.4 =
1605
+ bug fixed in form options
1606
+
1607
+ = 1.7.2 =
1608
+ improve themes
1609
+
1610
+ = 1.7.1 =
1611
+ bug fixed in email options
1612
+
1613
+ = 1.7 =
1614
+ Div structured, responsive form
1615
+ Editable html form layout
1616
+ New themes
1617
+
1618
+ = 1.6.6 =
1619
+ * fix security issue which was reported by Mateusz Lach
1620
+ = 1.6.4 =
1621
+ * Added featured plugins
1622
+ = 1.6.3 =
1623
+ * From Name, From Email in Form options
1624
+ = 1.5.0 =
1625
+ * Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)
1626
+ = 1.4.0 =
1627
+ * Customizable Email message for Administrator and Users
1628
+ = 1.3.0 =
1629
+ * Actions after form Submission:
1630
+ - Stay on form:
1631
+ - To go to Post,Page after the form submission:
1632
+ - Custom text after the form submission:
1633
+ - URL: The user is redirected to the provided URL after the form submission.
1634
+ * Edit javascript of the form:
1635
+ * Save as the copy of the form:
1636
+ * Themes: There are 43 standard themes included in Form Maker
1637
+ * New form fields:
1638
+ - Address field
1639
+ - Address mark on map form field
1640
+ - Number form field
1641
+ - Phone form field
1642
+ - Date 3 different form field
1643
+ - Time form field
1644
+ - Country list form field
1645
+ - Recaptcha form field
1646
+ * Pagebreak of the [Wordpress Form](http://wordpress.org/plugins/form-maker/) Maker: This can be used to break the form into distinct pages.
1647
+ * Section Break of the Form Maker: This option allows adding a section break to the form page.
1648
+ * For each web form certain types of statistical data are available in the form builder tool:
1649
+ * Entries of a form: The number of submitted forms in the form builder tool.
1650
+ * Views of a form: The number of times the form has been viewed.
1651
+ * Conversion Rate of a form: The percentage of submitted forms to the overall number of views.
1652
+
1653
+ = 1.0.0 =
1654
  Initial version