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

Version Description

  • Fixed: Minor bug.
Download this release

Release Info

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

Code changes from version 1.13.23 to 1.13.24

Files changed (3) hide show
  1. form-maker.php +3 -3
  2. framework/WDW_FM_Library.php +11 -8
  3. readme.txt +1605 -1602
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.23
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.23';
102
- $this->db_version = '2.13.23';
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.24
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.24';
102
+ $this->db_version = '2.13.24';
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;
framework/WDW_FM_Library.php CHANGED
@@ -904,18 +904,21 @@ class WDW_FM_Library {
904
  $sql = 'SELECT `fmt`.`css` FROM `' . $wpdb->prefix . 'formmaker` fm
905
  INNER JOIN `' . $wpdb->prefix . 'formmaker_themes` fmt ON (`fm`.`theme` = `fmt`.`id`)
906
  GROUP BY `fmt`.`id`';
907
- $results = $wpdb->get_results($sql, 'OBJECT');
908
  if ( $results ) {
909
- foreach( $results as $row ) {
910
- if ( isset($row->css) ) {
911
  $options = json_decode($row->css);
912
- foreach ( $options as $option ) {
913
- $is_google_fonts = in_array((string) $option, $google_fonts) ? TRUE : FALSE;
914
- if ( TRUE == $is_google_fonts ) {
915
- $google_array[$option] = $option;
 
 
 
916
  }
917
  }
918
- }
919
  }
920
  }
921
  if ( !empty($google_array) ) {
904
  $sql = 'SELECT `fmt`.`css` FROM `' . $wpdb->prefix . 'formmaker` fm
905
  INNER JOIN `' . $wpdb->prefix . 'formmaker_themes` fmt ON (`fm`.`theme` = `fmt`.`id`)
906
  GROUP BY `fmt`.`id`';
907
+ $results = $wpdb->get_results($sql, 'OBJECT');
908
  if ( $results ) {
909
+ foreach ( $results as $row ) {
910
+ if ( isset($row->css) ) {
911
  $options = json_decode($row->css);
912
+ if ( !empty($options) ) {
913
+
914
+ foreach ( $options as $option ) {
915
+ $is_google_fonts = in_array((string) $option, $google_fonts) ? TRUE : FALSE;
916
+ if ( TRUE == $is_google_fonts ) {
917
+ $google_array[$option] = $option;
918
+ }
919
  }
920
  }
921
+ }
922
  }
923
  }
924
  if ( !empty($google_array) ) {
readme.txt CHANGED
@@ -1,1603 +1,1606 @@
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.3
6
- Stable tag: 1.13.23
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 & 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 > New > Upload.
231
- 1. Click "Choose file" ("Browse") 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 "Install Now" button.
235
- 1. Click "Activate Plugin" 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 > 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 > 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 "phone" 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 > 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 > 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 > Email type on your form, the following error message will appear:
358
-
359
- "There is no email field".
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 > 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 "Thank you" message after users submit the form, or redirect them to another page, or more.
408
-
409
- Navigate to Form Options > 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 "Thank you" 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.23 =
566
- * Added: Flush Rewrite Rules for multisite.
567
- * Added: South Sudan to Address and Country List fields.
568
- * Improved: Include Google Fonts only if used by a form on that page.
569
- * Fixed: + sign in Regular Expressions.
570
- * Fixed: Recaptcha with AJAX submit.
571
- * Fixed: Row maximum width.
572
- * Fixed: Placeholder text color.
573
- * Fixed: PHP validation issue on an empty non-required email field.
574
-
575
- = 1.13.22 =
576
- * Added: New Extension: Form Maker Webhooks.
577
- * Added: Message about missing Stripe keys.
578
- * Improved: Email field validation for Cyrillic.
579
- * Fixed: Allow + sign in password for connecting to remote DB in MySQL mapping.
580
-
581
- = 1.13.21 =
582
- * Added: "Custom text" in "Action after submission" for not embedded forms.
583
- * Improved: Generated JS/CSS files fallback.
584
- * Changed: Do not show confirmation alert on deleting empty columns.
585
- * Fixed: Submitting a form with a value equal to the placeholder.
586
- * Fixed: Recaptcha load issue with slow internet.
587
- * Fixed: Show the unpublished form message only to the administrator.
588
- * Fixed: Pagination styles for Form Maker admin pages.
589
- * Fixed: Importing submissions of multiple forms at once.
590
- * Fixed: Saving IP on "Block IPs" page.
591
- * Fixed: Shortcode buttons behavior in Text widget of Divi Builder.
592
- * Fixed: Condition with line break in Textarea default value.
593
- * Fixed: Upload file URL in the email when Save Uploads is disabled.
594
-
595
- = 1.13.20 =
596
- * Added: Ask a question button.
597
-
598
- = 1.13.19 =
599
- * Removed: Webinar banner.
600
-
601
- = 1.13.18 =
602
- * Fixed: Conflict with common mod_security rules.
603
-
604
- = 1.13.17 =
605
- * Fixed: Spam protection.
606
- * Fixed: Counting form views.
607
- * Fixed: Error message on submitting form with existing username.
608
-
609
- = 1.13.16 =
610
- * Added: Webinar banner.
611
-
612
- = 1.13.15 =
613
- * Added: Use AJAX to submit forms (optional).
614
- * Added: Additional spam protection (optional).
615
- * Updated: PO files.
616
- * Improved: Email delivery functionality.
617
- * Fixed: Disable the submit button with deactivated Privacy options.
618
- * Fixed: Empty time field in Submissions.
619
- * Fixed: Recaptcha responsiveness.
620
- * Fixed: Do not include dashicons to front.
621
-
622
- = 1.13.14 =
623
- * Fixed: Action after submission for cached pages.
624
-
625
- = 1.13.12 =
626
- * Added: "Get Free Ebook" page on activation.
627
- * Added: Integration with reCaptcha v3.
628
- * Added: Fields placeholder functionality for Email to Admin.
629
- * Fixed: Disable auto fill for Date field.
630
- * Fixed: Pagination.
631
- * Changed: Banner text.
632
-
633
- = 1.13.10 =
634
- * Fixed: Page title in progress bar.
635
- * Fixed: Option for selecting posts/pages to display Popup, Topbar, and Scrollbox forms.
636
-
637
- = 1.13.9 =
638
- * Fixed: Issue with saving themes.
639
-
640
- = 1.13.8 =
641
- * Fixed: Form submit bug.
642
-
643
- = 1.13.7 =
644
- * Added: Support for 'all' placeholder in actions after submission.
645
- * Added: Provinces for Canada.
646
- * Improved: Spam protection.
647
- * Improved: Minify js, css.
648
- * Changed: Some country names.
649
- * Fixed: Two required "Table of fields" fields on a page.
650
- * Fixed: Error on uninstalling from multisite.
651
- * Fixed: Preview in themes edit page.
652
- * Fixed: User guide links for tabs in form edit page.
653
- * Fixed: Empty Simple Captcha input after form reset.
654
- * Fixed: Remove unnecessary container from placeholders popup.
655
-
656
- = 1.13.6 =
657
- * Fixed: Payment info is not retrieved.
658
-
659
- = 1.13.5 =
660
- * Fixed: CSRF issue.
661
- * Added: Banner to install 10Web manager.
662
-
663
- = 1.13.4 =
664
- * Fixed: Vulnerability on submissions page.
665
-
666
- = 1.13.3 =
667
- * Added: Functionality to add placeholders in "Select options from database" Where selector.
668
- * Added: Functionality to use "Star rating" as a condition.
669
- * Fixed: Security issue.
670
- * Fixed: Link for attachment in email.
671
- * Fixed: Allow "0" value for required fields.
672
- * Fixed: Don't use the same title for the duplicated form.
673
- * Fixed: Adding field to incorrect position.
674
- * Fixed: Scroll to required address field.
675
- * Fixed: Broken multiple pages.
676
- * Fixed: MySQL mapping edit functionality.
677
- * Fixed: Multisite support for add-ons.
678
- * Fixed: Saving advanced layout.
679
- * Fixed: 0 value is not saved in submissions for Payment single choice and Shipping fields.
680
-
681
- = 1.13.2 =
682
- * Changed: Links to 10Web.io.
683
-
684
- = 1.13.1 =
685
- * Fixed: Bug on checking if Address field is required.
686
-
687
- = 1.13.0 =
688
- * Added: Enable/Disable option for Form header.
689
- * Added: Tax option for Stripe payments.
690
- * Added: "Class name" option for "Single Line Text" field to allow add a css class for the field.
691
- * Added: "Palestine" to country list field.
692
- * Changed: Form editing page layout.
693
- * Changed: Form Revisions functionality.
694
- * Changed: Settings (Form Options) tab new design.
695
- * Changed: Form Publishing tab new design.
696
- * Changed: Selecting a Theme moved to Appearance.
697
- * Changed: Make email options a separate tab.
698
- * Changed: Remove required mark color from "Default" and "Inherit from site" themes.
699
- * Changed: Inherit styles (font, color) from Elementor for Form maker widget.
700
- * Fixed: Try to reproduce, try/catch curl part of code.
701
- * Fixed: Requirement of table field should be affected on all rows of it.
702
- * Fixed: The Like/Starting With options in WHERE of Select options from Database.
703
- * Fixed: Remove the link of the word "Privacy Policy" when there is no Privacy Policy page.
704
- * Fixed: Styles for rtl languages.
705
- * Fixed: Addons settings for duplicated forms.
706
- * Fixed: Required validation not allow space.
707
- * Fixed: Error when clicking allow or skip to collect some usage data more then once.
708
-
709
- = 1.12.42 =
710
- * Fixed: Remove the link from "Privacy Policy" text in the form when there is no Privacy Policy page.
711
-
712
- = 1.12.41 =
713
- * Added: WHERE selectors in "Options from database" (Select, Single and Multiple choice fields).
714
- * Added: Placeholders (User ID, Submitter's IP, etc.) in WHERE clause in "Options from database" and MySQL Mapping.
715
- * Improved: Parsing images in post content in Post Generation extension.
716
- * Improved: Automatically deactivate plugin after uninstall.
717
- * Fixed: Scroll issues on Safari (MacOS).
718
- * Fixed: "Receive Copy" field checkbox with Form maker some themes.
719
- * Fixed: "Custom text" after form submit.
720
-
721
- = 1.12.39 =
722
- * Added: Drag & Drop of Columns in form editor
723
- * Added: Drag & Drop of Pages in form editor
724
- * Added: New icon in Elementor plugin
725
- * Improved: Drag & Drop of fields in form editor
726
- * Fixed: Conditional fields flickering during page loading
727
-
728
- = 1.12.38 =
729
- * Improved: GDPR compliance options.
730
- * Added: Step option for slider field.
731
- * Fixed: Error on form front end when Privacy Policy checkbox is enabled.
732
- * Fixed: Bug on Actions after submission when Redirect to URL option is empty.
733
- * Fixed: Notice on form submit.
734
- * Fixed: Minor issues on Themes.
735
-
736
- = 1.12.37 =
737
- * Fixed: Compatibility with PHP version 5.3.
738
-
739
- = 1.12.36 =
740
- * Improved: Uninstall Form Maker interface and texts.
741
- * Fixed: "New Form Field" button drag and drop issue in Firefox and Safari.
742
- * Fixed: Do not show hidden amounts in total.
743
- * Fixed: Failed to import form submissions when there is a single quote in the form title.
744
- * Fixed: Can not submit contact form when there is a condition on stripe field and stripe is not visible.
745
- * Added: GDPR compliance required checkbox on the front end.
746
- * Added: Warn user if the email address does not belong to the site domain.
747
-
748
- = 1.12.35 =
749
- * Fixed: PDF should be generated even if sending emails is off.
750
- * Fixed: Form field validation issues on multi-page forms.
751
- * Fixed: Issue with Exporting/Importing a form with special characters in header.
752
-
753
- = 1.12.34 =
754
- * Added: Additional security check to block form submissions from bots.
755
- * Improved: Submissions CSV/XML export for bigger forms.
756
- * Improved: Rendering of forms in Elementor front-end builder preview.
757
- * Improved: Optimized the back end Scripts and CSS for faster loading.
758
- * Fixed: Form Submissions page responsiveness issue on mobile devices.
759
-
760
- = 1.12.33 =
761
- * Added: Option to enable/disable WP Editor.
762
- * Added: Additional security checks against bots.
763
- * Changed: Form field validation on form options page.
764
- * Fixed: Error on deactivation.
765
- * Fixed: Port for connecting to a remote Database with SQL mapping.
766
- * Fixed: Displaying Form on all posts instead of the selected.
767
- * Fixed: Filled values of payment form fields should not be lost on an error.
768
- * Fixed: Form is not saved if you click Publish before the page is loaded.
769
- * Fixed: Table of fields validation on form submission.
770
- * Fixed: Add shortcode functionality on Beaver, Elementor, SiteOrigin and Visual Composer builders.
771
- * Fixed: If you Sort/Filter the data via some column, then hit next page button, the sort reverts to the default sort order.
772
- * Fixed: Select all in Submissions should apply to the current page only.
773
- * Fixed: Do not change the page after IP block in submissions page.
774
- * Fixed: Do not change the page after deleting submission in submissions page.
775
-
776
- = 1.12.32 =
777
- * Fixed: Include styles/scripts on form pages only.
778
-
779
- = 1.12.31 =
780
- * Improved: CSV, XML export.
781
- * Improved: default email design
782
- * Improved: Minor improvements in email options
783
- * Fixed: PHP validation for email.
784
- * Fixed: Preserve the list of columns displayed when changing the page.
785
- * Fixed: Do not display ScrollBox form after Successful submission.
786
-
787
- = 1.12.30 =
788
- * Changed: Separate buttons for deactivation.
789
-
790
- = 1.12.29 =
791
- * Fixed: Bug on empty values for some form field types.
792
-
793
- = 1.12.28 =
794
- * Added: Custom javascript event, occurs after form is submitted.
795
- * Changed: Code structure refactoring.
796
- * Fixed: Bug on required form fields PHP validation.
797
- * Fixed: Bug on saving a theme.
798
-
799
- = 1.12.27 =
800
- * Added: Help and suggestions text for Privacy Policy (for GDPR compliance)
801
- * Added: Privacy related text to readme.
802
-
803
- = 1.12.26 =
804
- * Fixed: Vulnerabilities reported by Neven Biruski from DefenseCode (using the tool ThunderScan).
805
- * Fixed: "The loopback request to your site failed" error.
806
-
807
- = 1.12.25 =
808
- * Changed: Updated translations.
809
- * Added: Gutenberg integration.
810
- * Fixed: Required mark for "Receive Copy" form field.
811
- * Fixed: Bug on selecting options from database.
812
-
813
- = 1.12.24 =
814
- * Minor fix: an incorrect link
815
-
816
- = 1.12.23 =
817
- * Improved: Insert placeholder functionality.
818
- * Fixed: Action after submission text for popup forms.
819
- * Fixed: Do not allow negative numbers as quantity.
820
- * Added: Loading for add-ons options.
821
- * Added: Premium version page new style.
822
- * Added: Add-ons page new style.
823
- * Fixed: Submission id bug.
824
- * Fixed: Security issue reported by Sairam Jetty.
825
-
826
- = 1.12.22 =
827
- * Fixed: Security issue with CSV export.
828
-
829
- = 1.12.21 =
830
- * Changed: DB field length.
831
-
832
- = 1.12.20 =
833
- * Added: New file types for Form Maker file upload form field.
834
- * Improved: Editing empty mini labels.
835
- * Fixed: Form Submissions CSV export.
836
-
837
- = 1.12.19 =
838
- * Fixed: Form Submissions table view for long texts.
839
- * Fixed: Displaying phone field value in form email notification.
840
- * Fixed: Bug on deleting a Page break.
841
-
842
- = 1.12.18 =
843
- * Changed: improved Form Submissions view: added tooltips for long labels of form fields.
844
- * Added: detailed descriptions of form fields inside the form editor
845
- * Fixed: UTF-8 text in Email body.
846
-
847
- = 1.12.17 =
848
- * Fixed: UTF-8 text for Email subject and Email from name.
849
-
850
- = 1.12.16 =
851
- * Improved: Email functionality of Form Maker.
852
- * Fixed: Multiple choice and single choice with long labels.
853
- * Fixed: Form submissions CSV export with UTF-8 encoding.
854
-
855
- = 1.12.15 =
856
- * Fixed: Error on adding a form field.
857
-
858
- = 1.12.14 =
859
- * Fixed: Form submissions page.
860
-
861
- = 1.12.13 =
862
- * Fixed: Bug on Popup forms on mobile.
863
- * Fixed: Major bug.
864
- * Fixed: Exclude Stripe field from submissions export.
865
- * Fixed: "Custom HTML" field label in conditional fields list.
866
- * Fixed: Edit table of form fields in submissions.
867
- * Fixed: Trim data inserted by MySQL mapping.
868
- * Fixed: Default values for payment multiple and payment single choices.
869
- * Changed: Prevent default on form enter.
870
-
871
- = 1.12.12 =
872
- * Changed: Improved query to get number of form submissions.
873
- * Changed: Email field length in DB.
874
-
875
- = 1.12.11 =
876
- * Fixed: Form preview does not show with widget on page with some Wordpress themes.
877
- * Fixed: Do not check conditionally hidden required fields.
878
- * Fixed: Not embedded forms do not show on form preview page.
879
- * Fixed: Post/page search on display options pages.
880
- * Fixed: Tooltip in "Add query" popup.
881
- * Fixed: Insert demo forms only on activate.
882
- * Changed: Edit country list popup design.
883
- * Fixed: Emailing fields with apostrophes in label.
884
- * Fixed: Popup forms background.
885
- * Changed: Czech translation.
886
- * Changed: Italian translation.
887
- * Fixed: Matrix field in email.
888
- * Changed: Disable widget in preview page.
889
- * Fixed: Widget functionality with Contact Form Maker.
890
- * Fixed: Form Maker user manual links.
891
- * Fixed: Default values for multiple and single choices.
892
- * Fixed: Add new theme.
893
- * Fixed: Redirect from Paypal.
894
-
895
- = 1.12.10 =
896
- * Fixed: a minor bug.
897
-
898
- = 1.12.9 =
899
- * Fixed: Date range field buttons position.
900
- * Fixed: Forms count in backend.
901
- * Fixed: Placeholder notice with password fields.
902
- * Added: Puerto Rico, Wales to country list.
903
-
904
-
905
- = 1.12.8 =
906
- * Updated: WD Library.
907
- * Updated: Support forum link.
908
-
909
- = 1.12.7 =
910
- * Added: Invisible reCAPTCHA.
911
- * Improved: Compatibility with Contact Form Maker.
912
- * Improved: Stripe add-on styles.
913
- * Fixed: Some frontend styles.
914
- * Fixed: Fields width in forms manage page.
915
- * Changed: Field edit buttons place.
916
-
917
- = 1.12.6 =
918
- * Added: Full width functionality for fields.
919
- * Added: New Default Theme.
920
- * Added: Support forum and Review links.
921
- * Changed: Date field calendar icon.
922
- * Changed: Field manage functionality.
923
- * Changed: jQuery-UI styles.
924
- * Changed: Three form changed in new formats.
925
- * Improved: Responsiveness.
926
- * Fixed: Time, Date of Birth and Number fields validation also on mobile.
927
- * Fixed: Scroll to field on error.
928
- * Fixed: Right to left styles.
929
- * Fixed: Conflict with Yoast SEO plugin.
930
-
931
- = 1.12.5 =
932
- * Added: Hong Kong to country list.
933
- * Fixed: List of US states.
934
-
935
- = 1.12.4 =
936
- * Changed: Email validation field now allows + symbol
937
- * Changed: Remove Font Awesome.
938
- * Changed: Italian translation.
939
-
940
- = 1.12.3 =
941
- * Fixed: Get editor by id instead of active.
942
- * Fixed: Not found form id redirect to main page.
943
-
944
- = 1.12.2 =
945
- * Fixed: Border types bug
946
- * Fixed: Bug with PayPal IPN
947
- * Fixed: Date format synchronization with Save Progress add-on
948
-
949
- = 1.12.1 =
950
- * Changed: Add field button design.
951
- * Added: Show popup notice to install Backup WD plugin.
952
-
953
- = 1.12.0 =
954
- * Changed: Improved user interface of forms, submissions and options.
955
- * Changed: Separated field types into Basic, User Info, Layout, Advanced and Payment sections.
956
- * Changed: Simplified the structure of Form Options tabs.
957
- * Added: Drag and Drop builder button.
958
-
959
- = 1.11.11 =
960
- * Fixed: Conflict with Jetpack Contact Form module.
961
-
962
- = 1.11.8 =
963
- * Updated: WD Library.
964
-
965
- = 1.11.7 =
966
- * Fixed: Theme version control.
967
-
968
- = 1.11.6 =
969
- * Fixed: Shortcode editor pop-up styles.
970
- * Fixed: Scripts enqueue in Manage Forms page.
971
- * Fixed: MySQL Mapping fields list scrolling.
972
-
973
- = 1.11.5 =
974
- * Fixed: Bug on CSV/XML export.
975
- * Fixed: Google maps api conflict with other plugins.
976
- * Changed: Improved Matrix type field view in submissions.
977
- * Fixed: File upload field styles with "Inherit from website theme".
978
-
979
- = 1.11.4 =
980
- * Fixed: Bug on color picker when choosing transparency
981
- * Fixed: Bug on submissions edit
982
- * Fixed: Bug on "Inherit from website" theme
983
- * Fixed: Bug on Paypal notifications
984
- * Changed: Form Options tab id to avoid conflict with some plugins
985
-
986
-
987
- = 1.11.3 =
988
- * Added: Global option to enable Advanced Layout
989
- * Changed: Themes table field name: `params` to `css`
990
- * Fixed: Bug on PHP 5.2
991
- * Fixed: Uninstall bug in free version
992
- * Fixed: bug on generating Theme css
993
- * Fixed: CSS conflict with some ajax themes
994
-
995
- = 1.11.2 =
996
- * Added: Overview page
997
- * Removed: Featured Plugins, Featured Themes pages
998
- * Fixed: Security issue
999
- * Fixed: Themes - bug on save as copy
1000
-
1001
-
1002
- = 1.11.1 =
1003
- * Removed: Old forms support (created with Form Maker versions < 1.7.0)
1004
- * Added: Form Header
1005
- * Added: New Themes
1006
- * Added: New Theme Editor
1007
- * Added: Form Display Options (Embedded, Popup, Topbar, Scrollbox)
1008
- * Fixed: Database creation on some versions of MySQL
1009
- * Fixed: Removed html tags from csv and xml
1010
-
1011
- = 1.10.11 =
1012
- * Added: Support forum links.
1013
-
1014
- = 1.10.10 =
1015
- * Fixed: Bug on arithmetic captcha
1016
-
1017
- = 1.10.9 =
1018
- * Changed: New logo
1019
-
1020
- = 1.10.8 =
1021
- * Added: New form field type: Phone with flag
1022
- * Fixed: Bug on captcha reset
1023
-
1024
- = 1.10.7 =
1025
- * Changed: Improved captcha security
1026
- * Fixed: Bug on matrix field
1027
- * Fixed: Bug on conditional fields (for date field)
1028
- * Added: Notification about old forms
1029
-
1030
- = 1.10.6 =
1031
- * Fixed: Bug on spinner field
1032
- * Fixed: Bug on matrix field
1033
-
1034
- = 1.10.5 =
1035
- * Fixed: JS conflict on contact form submission
1036
-
1037
- = 1.10.4 =
1038
- * Fixed: Conflict with Yoast SEO plugin
1039
- * Fixed: Line breaks in textarea after incorrect captcha
1040
-
1041
- = 1.10.3 =
1042
- * Fixed: Bug on PHP 5.3
1043
-
1044
- = 1.10.2 =
1045
- * 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.
1046
-
1047
- = 1.10.1 =
1048
- * Added: Verified emails list in csv, xml files
1049
-
1050
- = 1.10 =
1051
- * Changed: Field validation errors and notifications
1052
- * Added: Real time field validation
1053
- * Changed: Improved NL translation
1054
- * Fixed: Bug on verified emails
1055
-
1056
- = 1.9.18 =
1057
- * Added: Filter verified emails and Export submissions with verified emails
1058
-
1059
- = 1.9.17 =
1060
- * Fixed: Bug with search by ID in Submissions
1061
- * Fixed: Bug with Validation (Regular Exp.)
1062
-
1063
- = 1.9.16 =
1064
- * Fixed: Bug with Hidden field in custom text in Email
1065
- * Fixed: Bug on email verification custom post
1066
- * Added: Field type in field edit page
1067
-
1068
- = 1.9.15 =
1069
- * Added: Password Confirmation field
1070
-
1071
- = 1.9.14 =
1072
- * Fixed: Bug on CSV and XML export
1073
-
1074
- = 1.9.13 =
1075
- * Fixed: Bug on Field label position (Left/Top)
1076
- * Fixed: JS error on IE 11 and Microsoft Edge
1077
-
1078
- = 1.9.12 =
1079
- * Added: Email Confirmation field
1080
- * Fixed: Bug on CSV and XML export
1081
-
1082
- = 1.9.11 =
1083
- * Changed: Filters now apply to CSV and XML export
1084
-
1085
- = 1.9.10 =
1086
- * Fixed: Bug on "Advanced Layout"
1087
-
1088
- = 1.9.9 =
1089
- * Changed: Featured plugins page
1090
-
1091
- = 1.9.8 =
1092
- * Fixed: Unexpected behavior on pressing "Enter" key on back end form creator page
1093
-
1094
- = 1.9.7 =
1095
- * Fixed: JS error on incorrect Google Maps API key
1096
- * Added: Alert about incorrect Google Maps API key
1097
-
1098
- = 1.9.6 =
1099
- * Added: Global option for Google Maps API key
1100
- * Fixed: Google Maps API key warning in browser
1101
-
1102
- = 1.9.5 =
1103
- * Changed: Improvements in "Select options from database" pop-up window for Select box, single and multiple choices
1104
- * Fixed: Back end minor style issues
1105
-
1106
- = 1.9.3 =
1107
- * Fixed: Bug with Date field in custom text in Email
1108
- * Fixed: Bug on editing submissions with checkbox and radio fields with customized values
1109
-
1110
- = 1.9.2 =
1111
- * Added: "View" button on submissions to open a single submission in a separate pop-up window
1112
- * Fixed: Minor bugs on editing submissions
1113
-
1114
- = 1.9.1 =
1115
- * Fixed: bug on date field on some browsers (Safari, Edge)
1116
-
1117
- = 1.9 =
1118
- * Changed: Improved Date picker functionality (new options: Dates to exclude, Default, Minimum, Maximum dates)
1119
- * Added: New field type: Date Range
1120
-
1121
- = 1.8.41 =
1122
- * Fixed: Bug on conditional fields (for multiple contact forms on the same page)
1123
-
1124
- = 1.8.40 =
1125
- * Changed: Style of required field asterisk
1126
- * Changed: Display the correct IDs and Names of the fields in the back end (Add/Edit field interface) to use in js/css
1127
-
1128
- = 1.8.39 =
1129
- * Fixed: Bug on Matrix field (additional attributes)
1130
-
1131
- = 1.8.38 =
1132
- * Fixed: Bug on Matrix field (special characters in row/column labels)
1133
-
1134
- = 1.8.36 =
1135
- * Fixed: Bug on long content in textarea fields
1136
-
1137
- = 1.8.35 =
1138
- * Fixed: Browser warning on Google Maps API version
1139
- * Fixed: Phone field style issue on Mac OS
1140
-
1141
- = 1.8.34 =
1142
- * Fixed: Some minor style issues
1143
-
1144
- = 1.8.33 =
1145
- * Fixed: Bug in Address field
1146
- * Fixed: Bug with Additional Attributes in Email field
1147
- * Changed: before_submit() function functionality
1148
-
1149
- = 1.8.32 =
1150
- * New Add-on: Calculator
1151
- Removed: deprecated Number field
1152
-
1153
- = 1.8.31 =
1154
- * Fixed: Issue with search in Submissions page
1155
-
1156
- = 1.8.30 =
1157
- * Added: Submission ID in csv export
1158
-
1159
- = 1.8.29 =
1160
- * Changed: Featured Plugins, Featured Themes pages design.
1161
-
1162
- = 1.8.28 =
1163
- * Fixed: Bug in Email Options
1164
- * Fixed: Bug in Conditional Fields
1165
- * Fixed: Bug in date field
1166
-
1167
- = 1.8.27 =
1168
- * Fixed: Bug in Conditional Fields
1169
- * Fixed: Bug with Additional Attributes in Multiple Choice
1170
-
1171
- = 1.8.26 =
1172
- * Fixed: Submissions page styles
1173
- * Fixed: Issue with IPv6
1174
-
1175
- = 1.8.25 =
1176
- * Fixed: Bug in conditional fields.
1177
- * Changed: Featured Plugins, Featured Themes pages design.
1178
-
1179
- = 1.8.24 =
1180
- * Added: File upload as a link in email
1181
-
1182
- = 1.8.23 =
1183
- * Fixed: Bug in textarea field with line breaks
1184
-
1185
- = 1.8.22 =
1186
- * Fixed: Conflict with some plugins
1187
-
1188
- = 1.8.21 =
1189
- * Fixed: Bug in selec tbox
1190
-
1191
- = 1.8.20 =
1192
- * Added: Auto fill with user data for email address and name fields
1193
-
1194
- = 1.8.19 =
1195
- * Changed: Back End design
1196
-
1197
- = 1.8.18 =
1198
- * Added: Date format validation
1199
- * Fixed: Recaptcha Validation bug
1200
-
1201
- = 1.8.17 =
1202
- * Added: Global Options
1203
-
1204
- = 1.8.16 =
1205
- * Fixed: User guide links
1206
-
1207
- = 1.8.15 =
1208
- * Changed: Back End Design for old forms
1209
-
1210
- = 1.8.14 =
1211
- * Fixed: Bug in PayPal field
1212
- * Changed: Matrix field display in email
1213
-
1214
- = 1.8.13 =
1215
- * Fixed: Style in form builder edit page
1216
- * Fixed: Bug in PayPal options
1217
-
1218
- = 1.8.12 =
1219
- * Changed: Submissions page styles
1220
-
1221
- = 1.8.11 =
1222
- * New Add-on: Stripe Integration
1223
-
1224
- = 1.8.10 =
1225
- * Fixed: Bug in name field
1226
- * Fixed: Bug in captcha
1227
-
1228
- = 1.8.9 =
1229
- * New Add-on: Save Progress
1230
-
1231
- = 1.8.8 =
1232
- * Fixed: Minor bug
1233
-
1234
- = 1.8.7 =
1235
- * New: New year promo
1236
-
1237
- = 1.8.6 =
1238
- * Changed: Reset button
1239
- * Fixed: Bug with scrolling in new field pop up
1240
- * Fixed: Bug in MySql mapping on firefox browser
1241
-
1242
- = 1.8.5 =
1243
- * Fixed: Bug in mysql mapping.
1244
- * Changed: Featured themes page.
1245
-
1246
- = 1.8.4 =
1247
- * Fixed: Bug in submissions
1248
-
1249
- = 1.8.3 =
1250
- * Changed: Backend design
1251
-
1252
- = 1.8.2 =
1253
- * New Add-on: Pushover Integration
1254
-
1255
- = 1.8.1 =
1256
- * Fixed: Bug in email options
1257
- * Changed: Backend design
1258
-
1259
- = 1.8.0 =
1260
- * Changed: Backend design
1261
-
1262
- = 1.7.97 =
1263
- * Fixed: Bug in CSV/XML export
1264
-
1265
- = 1.7.96 =
1266
- * Added: Preview button
1267
- * Changed: Conditional fields limitation
1268
-
1269
- = 1.7.95 =
1270
- * Changed: csv/xml export file directory
1271
-
1272
- = 1.7.94 =
1273
- * Added: Progress bar for csv/xml export
1274
-
1275
- = 1.7.93 =
1276
- * Fixed: Bug in mailing
1277
- * Changed: Calendar styles
1278
-
1279
- = 1.7.92 =
1280
- * Fixed: Bug in mailing
1281
-
1282
- = 1.7.91 =
1283
- * Changed: Themes
1284
- * Fixed: Bug in block ip
1285
-
1286
- = 1.7.90 =
1287
- * Fixed: Bug in CSV/XML export
1288
-
1289
- = 1.7.89 =
1290
- * Fixed: Conflict with some plugins
1291
- * Changed: Styles
1292
-
1293
- = 1.7.88 =
1294
- * New: Double scroll in submissions page
1295
- * New: Delete confirmation
1296
- * Fixed: Bug in mysql mapping for conditional fields
1297
-
1298
- = 1.7.87 =
1299
- * Fixed: Bug in CSV/XML export
1300
-
1301
- = 1.7.86 =
1302
- * Changed: CSV/XML export
1303
-
1304
- = 1.7.85 =
1305
- * Fixed: Bug in conditional fields
1306
-
1307
- = 1.7.84 =
1308
- * New Add-on: PDF Integration
1309
-
1310
- = 1.7.83 =
1311
- * New: Google Drive Integration Add-on
1312
-
1313
- = 1.7.82 =
1314
- * Fixed: Bug in demo forms
1315
-
1316
- = 1.7.81 =
1317
- * Fixed: Bug in update
1318
-
1319
- = 1.7.80 =
1320
- * Changed: Notices
1321
-
1322
- = 1.7.79 =
1323
- * Fixed: Bug in update
1324
-
1325
- = 1.7.78 =
1326
- * Changed: Themes
1327
-
1328
- = 1.7.77 =
1329
- * New: Dropbox Integration Add-on
1330
-
1331
- = 1.7.76 =
1332
- * Changed: Licensing/Donation page
1333
- * Changed: Notices
1334
-
1335
- = 1.7.75 =
1336
- * Changed: Submissions default ordering
1337
- * Changed: Featured Plugins page
1338
-
1339
- = 1.7.74 =
1340
- * Fixed: Minor bugs
1341
-
1342
- = 1.7.73 =
1343
- * New: Notices
1344
-
1345
- = 1.7.71 =
1346
- * New Add-on: Conditional Emails
1347
-
1348
- = 1.7.70 =
1349
- * Changed: Styles
1350
-
1351
- = 1.7.69 =
1352
- Minor bug fixed
1353
-
1354
- = 1.7.68 =
1355
- * Changed: Compatibility with WordPress 4.3
1356
-
1357
- = 1.7.67 =
1358
- * Fixed: Bug in slider field
1359
- * Fixed: Bug in address field
1360
- * Fixed: Bug in mysql mapping
1361
-
1362
- = 1.7.66 =
1363
- * Fixed: Bug in Undo/Redo
1364
-
1365
- = 1.7.65 =
1366
- * New: Post Generation Add-on
1367
-
1368
- = 1.7.64 =
1369
- * Fixed: Minor bug
1370
-
1371
- = 1.7.63 =
1372
- * New: Add-ons page logo
1373
-
1374
- = 1.7.62 =
1375
- * New Add-on: User Registration
1376
-
1377
- = 1.7.61 =
1378
- * New: Form Maker Add-ons page
1379
-
1380
- = 1.7.60 =
1381
- * Fixed: Minor bug
1382
-
1383
- = 1.7.59 =
1384
- * Fixed: Bug in csv/xml export
1385
-
1386
- = 1.7.58 =
1387
- * Fixed: Minor bugs
1388
- * Added: Email verification custom post
1389
-
1390
- = 1.7.57 =
1391
- * Fixed: Security issue
1392
-
1393
- = 1.7.56 =
1394
- * New: ReCaptcha version 2.0
1395
- * New: Arithmetic Captcha
1396
-
1397
- = 1.7.55 =
1398
- * New: Undo/Redo form
1399
-
1400
- = 1.7.54 =
1401
- bug in conditional fields fixed
1402
-
1403
- = 1.7.53 =
1404
- bug in select field fixed
1405
-
1406
- = 1.7.52 =
1407
- minor bugs fixed
1408
-
1409
- = 1.7.51 =
1410
- * Changed: Featured plugins page.
1411
- * New: Featured themes page.
1412
-
1413
- = 1.7.50 =
1414
- minor bugs fixed
1415
-
1416
- = 1.7.49 =
1417
- Limited up to 7 fields to add
1418
- Bug fixed
1419
-
1420
- = 1.7.48 =
1421
- bug in radio and matrix fields fixed
1422
-
1423
- = 1.7.47 =
1424
- Show custom html and section break id
1425
-
1426
- = 1.7.46 =
1427
- Limited up to 9 fields to add
1428
- * New: Enable/Disable Title and Middle Name for Name field
1429
-
1430
- = 1.7.45 =
1431
- * New: Option to disable past days in date picker
1432
-
1433
- = 1.7.44 =
1434
- security issue fixed
1435
-
1436
- = 1.7.43 =
1437
- * New: Email verification
1438
-
1439
- = 1.7.42 =
1440
- bug in recaptcha fixed
1441
- change links
1442
-
1443
- = 1.7.40 =
1444
- Allow to use entry values in "Custom text after submission"
1445
-
1446
- = 1.7.39 =
1447
- * New: User information in mysql mapping
1448
- * Fixed: Country names
1449
-
1450
- = 1.7.38 =
1451
- bug fixed in stats
1452
- change field value type to longtext
1453
-
1454
- = 1.7.37 =
1455
- Optimize csv/xml export
1456
-
1457
- = 1.7.35 =
1458
- * New: Email empty fields option
1459
-
1460
- = 1.7.34 =
1461
- * New: Validation (Regular Exp.)
1462
- * Fixed: Select field duplication
1463
-
1464
- = 1.7.33 =
1465
- bug in address field fixed
1466
-
1467
- = 1.7.32 =
1468
- bug fixed
1469
-
1470
- = 1.7.31 =
1471
- Bug fixed: Hidden field save to DB.
1472
- * New: Drag and drop options in multiple, single choices and select box.
1473
- * New: Select options from database.
1474
- * New: Add image in email as image.
1475
- * New: Additional clauses within conditional fields.
1476
- * New: Search submissions by ID.
1477
- * New: Submission ID in email.
1478
-
1479
- = 1.7.30 =
1480
- Cache issue fixed
1481
-
1482
- = 1.7.29 =
1483
- Bug fixed: Empty email "From name".
1484
- Bug fixed: Delete theme.
1485
-
1486
- = 1.7.28 =
1487
- Bug fixed: Edit submissions.
1488
- Bug fixed: Conditional fields with quota in labels
1489
-
1490
- = 1.7.27 =
1491
- bug fixed in csv\xml export
1492
-
1493
- = 1.7.26 =
1494
- bug fixed in email content
1495
-
1496
- = 1.7.25 =
1497
- remove fancybox lightbox
1498
-
1499
- = 1.7.24 =
1500
- display php function to publish contact form
1501
-
1502
- = 1.7.23 =
1503
- bug in Recaptcha fixed
1504
-
1505
- = 1.7.22 =
1506
- Form field reordering using Drag&Drop
1507
-
1508
- = 1.7.21 =
1509
- wp 4.0.1 shortcode issue fixed
1510
-
1511
- = 1.7.18 =
1512
- pagination with input
1513
-
1514
- = 1.7.17 =
1515
- bug fixed in condition fields
1516
-
1517
- = 1.7.16 =
1518
- show submitter information in popup (Country, CountryCode, City, Latitude, Longitude)
1519
-
1520
- = 1.7.15 =
1521
- bug fixed
1522
-
1523
- = 1.7.14 =
1524
- csv, xml export mark on map
1525
-
1526
- = 1.7.13 =
1527
- sql mapping
1528
-
1529
- = 1.7.12 =
1530
- extended name edit bug fixed (if first input is empty)
1531
-
1532
- = 1.7.11 =
1533
- hidden field edit bug fixed
1534
-
1535
- = 1.7.10 =
1536
- security issue fixed
1537
-
1538
- = 1.7.9 =
1539
- line break in custom text in email
1540
-
1541
- = 1.7.8 =
1542
- bug fixed in required radio field
1543
-
1544
- = 1.7.7 =
1545
- bug fixed in adding new contact form
1546
-
1547
- = 1.7.6 =
1548
- new email options, conditional fields
1549
-
1550
- = 1.7.5 =
1551
- conflict with Jetpack Contact Form module fixed
1552
-
1553
- = 1.7.4 =
1554
- bug fixed in form options
1555
-
1556
- = 1.7.2 =
1557
- improve themes
1558
-
1559
- = 1.7.1 =
1560
- bug fixed in email options
1561
-
1562
- = 1.7 =
1563
- Div structured, responsive form
1564
- Editable html form layout
1565
- New themes
1566
-
1567
- = 1.6.6 =
1568
- * fix security issue which was reported by Mateusz Lach
1569
- = 1.6.4 =
1570
- * Added featured plugins
1571
- = 1.6.3 =
1572
- * From Name, From Email in Form options
1573
- = 1.5.0 =
1574
- * Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)
1575
- = 1.4.0 =
1576
- * Customizable Email message for Administrator and Users
1577
- = 1.3.0 =
1578
- * Actions after form Submission:
1579
- - Stay on form:
1580
- - To go to Post,Page after the form submission:
1581
- - Custom text after the form submission:
1582
- - URL: The user is redirected to the provided URL after the form submission.
1583
- * Edit javascript of the form:
1584
- * Save as the copy of the form:
1585
- * Themes: There are 43 standard themes included in Form Maker
1586
- * New form fields:
1587
- - Address field
1588
- - Address mark on map form field
1589
- - Number form field
1590
- - Phone form field
1591
- - Date 3 different form field
1592
- - Time form field
1593
- - Country list form field
1594
- - Recaptcha form field
1595
- * Pagebreak of the [Wordpress Form](http://wordpress.org/plugins/form-maker/) Maker: This can be used to break the form into distinct pages.
1596
- * Section Break of the Form Maker: This option allows adding a section break to the form page.
1597
- * For each web form certain types of statistical data are available in the form builder tool:
1598
- * Entries of a form: The number of submitted forms in the form builder tool.
1599
- * Views of a form: The number of times the form has been viewed.
1600
- * Conversion Rate of a form: The percentage of submitted forms to the overall number of views.
1601
-
1602
- = 1.0.0 =
 
 
 
1603
  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.3
6
+ Stable tag: 1.13.24
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.24 =
566
+ * Fixed: Minor bug.
567
+
568
+ = 1.13.23 =
569
+ * Added: Flush Rewrite Rules for multisite.
570
+ * Added: South Sudan to Address and Country List fields.
571
+ * Improved: Include Google Fonts only if used by a form on that page.
572
+ * Fixed: + sign in Regular Expressions.
573
+ * Fixed: Recaptcha with AJAX submit.
574
+ * Fixed: Row maximum width.
575
+ * Fixed: Placeholder text color.
576
+ * Fixed: PHP validation issue on an empty non-required email field.
577
+
578
+ = 1.13.22 =
579
+ * Added: New Extension: Form Maker Webhooks.
580
+ * Added: Message about missing Stripe keys.
581
+ * Improved: Email field validation for Cyrillic.
582
+ * Fixed: Allow + sign in password for connecting to remote DB in MySQL mapping.
583
+
584
+ = 1.13.21 =
585
+ * Added: "Custom text" in "Action after submission" for not embedded forms.
586
+ * Improved: Generated JS/CSS files fallback.
587
+ * Changed: Do not show confirmation alert on deleting empty columns.
588
+ * Fixed: Submitting a form with a value equal to the placeholder.
589
+ * Fixed: Recaptcha load issue with slow internet.
590
+ * Fixed: Show the unpublished form message only to the administrator.
591
+ * Fixed: Pagination styles for Form Maker admin pages.
592
+ * Fixed: Importing submissions of multiple forms at once.
593
+ * Fixed: Saving IP on "Block IPs" page.
594
+ * Fixed: Shortcode buttons behavior in Text widget of Divi Builder.
595
+ * Fixed: Condition with line break in Textarea default value.
596
+ * Fixed: Upload file URL in the email when Save Uploads is disabled.
597
+
598
+ = 1.13.20 =
599
+ * Added: Ask a question button.
600
+
601
+ = 1.13.19 =
602
+ * Removed: Webinar banner.
603
+
604
+ = 1.13.18 =
605
+ * Fixed: Conflict with common mod_security rules.
606
+
607
+ = 1.13.17 =
608
+ * Fixed: Spam protection.
609
+ * Fixed: Counting form views.
610
+ * Fixed: Error message on submitting form with existing username.
611
+
612
+ = 1.13.16 =
613
+ * Added: Webinar banner.
614
+
615
+ = 1.13.15 =
616
+ * Added: Use AJAX to submit forms (optional).
617
+ * Added: Additional spam protection (optional).
618
+ * Updated: PO files.
619
+ * Improved: Email delivery functionality.
620
+ * Fixed: Disable the submit button with deactivated Privacy options.
621
+ * Fixed: Empty time field in Submissions.
622
+ * Fixed: Recaptcha responsiveness.
623
+ * Fixed: Do not include dashicons to front.
624
+
625
+ = 1.13.14 =
626
+ * Fixed: Action after submission for cached pages.
627
+
628
+ = 1.13.12 =
629
+ * Added: "Get Free Ebook" page on activation.
630
+ * Added: Integration with reCaptcha v3.
631
+ * Added: Fields placeholder functionality for Email to Admin.
632
+ * Fixed: Disable auto fill for Date field.
633
+ * Fixed: Pagination.
634
+ * Changed: Banner text.
635
+
636
+ = 1.13.10 =
637
+ * Fixed: Page title in progress bar.
638
+ * Fixed: Option for selecting posts/pages to display Popup, Topbar, and Scrollbox forms.
639
+
640
+ = 1.13.9 =
641
+ * Fixed: Issue with saving themes.
642
+
643
+ = 1.13.8 =
644
+ * Fixed: Form submit bug.
645
+
646
+ = 1.13.7 =
647
+ * Added: Support for 'all' placeholder in actions after submission.
648
+ * Added: Provinces for Canada.
649
+ * Improved: Spam protection.
650
+ * Improved: Minify js, css.
651
+ * Changed: Some country names.
652
+ * Fixed: Two required "Table of fields" fields on a page.
653
+ * Fixed: Error on uninstalling from multisite.
654
+ * Fixed: Preview in themes edit page.
655
+ * Fixed: User guide links for tabs in form edit page.
656
+ * Fixed: Empty Simple Captcha input after form reset.
657
+ * Fixed: Remove unnecessary container from placeholders popup.
658
+
659
+ = 1.13.6 =
660
+ * Fixed: Payment info is not retrieved.
661
+
662
+ = 1.13.5 =
663
+ * Fixed: CSRF issue.
664
+ * Added: Banner to install 10Web manager.
665
+
666
+ = 1.13.4 =
667
+ * Fixed: Vulnerability on submissions page.
668
+
669
+ = 1.13.3 =
670
+ * Added: Functionality to add placeholders in "Select options from database" Where selector.
671
+ * Added: Functionality to use "Star rating" as a condition.
672
+ * Fixed: Security issue.
673
+ * Fixed: Link for attachment in email.
674
+ * Fixed: Allow "0" value for required fields.
675
+ * Fixed: Don't use the same title for the duplicated form.
676
+ * Fixed: Adding field to incorrect position.
677
+ * Fixed: Scroll to required address field.
678
+ * Fixed: Broken multiple pages.
679
+ * Fixed: MySQL mapping edit functionality.
680
+ * Fixed: Multisite support for add-ons.
681
+ * Fixed: Saving advanced layout.
682
+ * Fixed: 0 value is not saved in submissions for Payment single choice and Shipping fields.
683
+
684
+ = 1.13.2 =
685
+ * Changed: Links to 10Web.io.
686
+
687
+ = 1.13.1 =
688
+ * Fixed: Bug on checking if Address field is required.
689
+
690
+ = 1.13.0 =
691
+ * Added: Enable/Disable option for Form header.
692
+ * Added: Tax option for Stripe payments.
693
+ * Added: "Class name" option for "Single Line Text" field to allow add a css class for the field.
694
+ * Added: "Palestine" to country list field.
695
+ * Changed: Form editing page layout.
696
+ * Changed: Form Revisions functionality.
697
+ * Changed: Settings (Form Options) tab new design.
698
+ * Changed: Form Publishing tab new design.
699
+ * Changed: Selecting a Theme moved to Appearance.
700
+ * Changed: Make email options a separate tab.
701
+ * Changed: Remove required mark color from "Default" and "Inherit from site" themes.
702
+ * Changed: Inherit styles (font, color) from Elementor for Form maker widget.
703
+ * Fixed: Try to reproduce, try/catch curl part of code.
704
+ * Fixed: Requirement of table field should be affected on all rows of it.
705
+ * Fixed: The Like/Starting With options in WHERE of Select options from Database.
706
+ * Fixed: Remove the link of the word "Privacy Policy" when there is no Privacy Policy page.
707
+ * Fixed: Styles for rtl languages.
708
+ * Fixed: Addons settings for duplicated forms.
709
+ * Fixed: Required validation not allow space.
710
+ * Fixed: Error when clicking allow or skip to collect some usage data more then once.
711
+
712
+ = 1.12.42 =
713
+ * Fixed: Remove the link from "Privacy Policy" text in the form when there is no Privacy Policy page.
714
+
715
+ = 1.12.41 =
716
+ * Added: WHERE selectors in "Options from database" (Select, Single and Multiple choice fields).
717
+ * Added: Placeholders (User ID, Submitter's IP, etc.) in WHERE clause in "Options from database" and MySQL Mapping.
718
+ * Improved: Parsing images in post content in Post Generation extension.
719
+ * Improved: Automatically deactivate plugin after uninstall.
720
+ * Fixed: Scroll issues on Safari (MacOS).
721
+ * Fixed: "Receive Copy" field checkbox with Form maker some themes.
722
+ * Fixed: "Custom text" after form submit.
723
+
724
+ = 1.12.39 =
725
+ * Added: Drag & Drop of Columns in form editor
726
+ * Added: Drag & Drop of Pages in form editor
727
+ * Added: New icon in Elementor plugin
728
+ * Improved: Drag & Drop of fields in form editor
729
+ * Fixed: Conditional fields flickering during page loading
730
+
731
+ = 1.12.38 =
732
+ * Improved: GDPR compliance options.
733
+ * Added: Step option for slider field.
734
+ * Fixed: Error on form front end when Privacy Policy checkbox is enabled.
735
+ * Fixed: Bug on Actions after submission when Redirect to URL option is empty.
736
+ * Fixed: Notice on form submit.
737
+ * Fixed: Minor issues on Themes.
738
+
739
+ = 1.12.37 =
740
+ * Fixed: Compatibility with PHP version 5.3.
741
+
742
+ = 1.12.36 =
743
+ * Improved: Uninstall Form Maker interface and texts.
744
+ * Fixed: "New Form Field" button drag and drop issue in Firefox and Safari.
745
+ * Fixed: Do not show hidden amounts in total.
746
+ * Fixed: Failed to import form submissions when there is a single quote in the form title.
747
+ * Fixed: Can not submit contact form when there is a condition on stripe field and stripe is not visible.
748
+ * Added: GDPR compliance required checkbox on the front end.
749
+ * Added: Warn user if the email address does not belong to the site domain.
750
+
751
+ = 1.12.35 =
752
+ * Fixed: PDF should be generated even if sending emails is off.
753
+ * Fixed: Form field validation issues on multi-page forms.
754
+ * Fixed: Issue with Exporting/Importing a form with special characters in header.
755
+
756
+ = 1.12.34 =
757
+ * Added: Additional security check to block form submissions from bots.
758
+ * Improved: Submissions CSV/XML export for bigger forms.
759
+ * Improved: Rendering of forms in Elementor front-end builder preview.
760
+ * Improved: Optimized the back end Scripts and CSS for faster loading.
761
+ * Fixed: Form Submissions page responsiveness issue on mobile devices.
762
+
763
+ = 1.12.33 =
764
+ * Added: Option to enable/disable WP Editor.
765
+ * Added: Additional security checks against bots.
766
+ * Changed: Form field validation on form options page.
767
+ * Fixed: Error on deactivation.
768
+ * Fixed: Port for connecting to a remote Database with SQL mapping.
769
+ * Fixed: Displaying Form on all posts instead of the selected.
770
+ * Fixed: Filled values of payment form fields should not be lost on an error.
771
+ * Fixed: Form is not saved if you click Publish before the page is loaded.
772
+ * Fixed: Table of fields validation on form submission.
773
+ * Fixed: Add shortcode functionality on Beaver, Elementor, SiteOrigin and Visual Composer builders.
774
+ * Fixed: If you Sort/Filter the data via some column, then hit next page button, the sort reverts to the default sort order.
775
+ * Fixed: Select all in Submissions should apply to the current page only.
776
+ * Fixed: Do not change the page after IP block in submissions page.
777
+ * Fixed: Do not change the page after deleting submission in submissions page.
778
+
779
+ = 1.12.32 =
780
+ * Fixed: Include styles/scripts on form pages only.
781
+
782
+ = 1.12.31 =
783
+ * Improved: CSV, XML export.
784
+ * Improved: default email design
785
+ * Improved: Minor improvements in email options
786
+ * Fixed: PHP validation for email.
787
+ * Fixed: Preserve the list of columns displayed when changing the page.
788
+ * Fixed: Do not display ScrollBox form after Successful submission.
789
+
790
+ = 1.12.30 =
791
+ * Changed: Separate buttons for deactivation.
792
+
793
+ = 1.12.29 =
794
+ * Fixed: Bug on empty values for some form field types.
795
+
796
+ = 1.12.28 =
797
+ * Added: Custom javascript event, occurs after form is submitted.
798
+ * Changed: Code structure refactoring.
799
+ * Fixed: Bug on required form fields PHP validation.
800
+ * Fixed: Bug on saving a theme.
801
+
802
+ = 1.12.27 =
803
+ * Added: Help and suggestions text for Privacy Policy (for GDPR compliance)
804
+ * Added: Privacy related text to readme.
805
+
806
+ = 1.12.26 =
807
+ * Fixed: Vulnerabilities reported by Neven Biruski from DefenseCode (using the tool ThunderScan).
808
+ * Fixed: "The loopback request to your site failed" error.
809
+
810
+ = 1.12.25 =
811
+ * Changed: Updated translations.
812
+ * Added: Gutenberg integration.
813
+ * Fixed: Required mark for "Receive Copy" form field.
814
+ * Fixed: Bug on selecting options from database.
815
+
816
+ = 1.12.24 =
817
+ * Minor fix: an incorrect link
818
+
819
+ = 1.12.23 =
820
+ * Improved: Insert placeholder functionality.
821
+ * Fixed: Action after submission text for popup forms.
822
+ * Fixed: Do not allow negative numbers as quantity.
823
+ * Added: Loading for add-ons options.
824
+ * Added: Premium version page new style.
825
+ * Added: Add-ons page new style.
826
+ * Fixed: Submission id bug.
827
+ * Fixed: Security issue reported by Sairam Jetty.
828
+
829
+ = 1.12.22 =
830
+ * Fixed: Security issue with CSV export.
831
+
832
+ = 1.12.21 =
833
+ * Changed: DB field length.
834
+
835
+ = 1.12.20 =
836
+ * Added: New file types for Form Maker file upload form field.
837
+ * Improved: Editing empty mini labels.
838
+ * Fixed: Form Submissions CSV export.
839
+
840
+ = 1.12.19 =
841
+ * Fixed: Form Submissions table view for long texts.
842
+ * Fixed: Displaying phone field value in form email notification.
843
+ * Fixed: Bug on deleting a Page break.
844
+
845
+ = 1.12.18 =
846
+ * Changed: improved Form Submissions view: added tooltips for long labels of form fields.
847
+ * Added: detailed descriptions of form fields inside the form editor
848
+ * Fixed: UTF-8 text in Email body.
849
+
850
+ = 1.12.17 =
851
+ * Fixed: UTF-8 text for Email subject and Email from name.
852
+
853
+ = 1.12.16 =
854
+ * Improved: Email functionality of Form Maker.
855
+ * Fixed: Multiple choice and single choice with long labels.
856
+ * Fixed: Form submissions CSV export with UTF-8 encoding.
857
+
858
+ = 1.12.15 =
859
+ * Fixed: Error on adding a form field.
860
+
861
+ = 1.12.14 =
862
+ * Fixed: Form submissions page.
863
+
864
+ = 1.12.13 =
865
+ * Fixed: Bug on Popup forms on mobile.
866
+ * Fixed: Major bug.
867
+ * Fixed: Exclude Stripe field from submissions export.
868
+ * Fixed: "Custom HTML" field label in conditional fields list.
869
+ * Fixed: Edit table of form fields in submissions.
870
+ * Fixed: Trim data inserted by MySQL mapping.
871
+ * Fixed: Default values for payment multiple and payment single choices.
872
+ * Changed: Prevent default on form enter.
873
+
874
+ = 1.12.12 =
875
+ * Changed: Improved query to get number of form submissions.
876
+ * Changed: Email field length in DB.
877
+
878
+ = 1.12.11 =
879
+ * Fixed: Form preview does not show with widget on page with some Wordpress themes.
880
+ * Fixed: Do not check conditionally hidden required fields.
881
+ * Fixed: Not embedded forms do not show on form preview page.
882
+ * Fixed: Post/page search on display options pages.
883
+ * Fixed: Tooltip in "Add query" popup.
884
+ * Fixed: Insert demo forms only on activate.
885
+ * Changed: Edit country list popup design.
886
+ * Fixed: Emailing fields with apostrophes in label.
887
+ * Fixed: Popup forms background.
888
+ * Changed: Czech translation.
889
+ * Changed: Italian translation.
890
+ * Fixed: Matrix field in email.
891
+ * Changed: Disable widget in preview page.
892
+ * Fixed: Widget functionality with Contact Form Maker.
893
+ * Fixed: Form Maker user manual links.
894
+ * Fixed: Default values for multiple and single choices.
895
+ * Fixed: Add new theme.
896
+ * Fixed: Redirect from Paypal.
897
+
898
+ = 1.12.10 =
899
+ * Fixed: a minor bug.
900
+
901
+ = 1.12.9 =
902
+ * Fixed: Date range field buttons position.
903
+ * Fixed: Forms count in backend.
904
+ * Fixed: Placeholder notice with password fields.
905
+ * Added: Puerto Rico, Wales to country list.
906
+
907
+
908
+ = 1.12.8 =
909
+ * Updated: WD Library.
910
+ * Updated: Support forum link.
911
+
912
+ = 1.12.7 =
913
+ * Added: Invisible reCAPTCHA.
914
+ * Improved: Compatibility with Contact Form Maker.
915
+ * Improved: Stripe add-on styles.
916
+ * Fixed: Some frontend styles.
917
+ * Fixed: Fields width in forms manage page.
918
+ * Changed: Field edit buttons place.
919
+
920
+ = 1.12.6 =
921
+ * Added: Full width functionality for fields.
922
+ * Added: New Default Theme.
923
+ * Added: Support forum and Review links.
924
+ * Changed: Date field calendar icon.
925
+ * Changed: Field manage functionality.
926
+ * Changed: jQuery-UI styles.
927
+ * Changed: Three form changed in new formats.
928
+ * Improved: Responsiveness.
929
+ * Fixed: Time, Date of Birth and Number fields validation also on mobile.
930
+ * Fixed: Scroll to field on error.
931
+ * Fixed: Right to left styles.
932
+ * Fixed: Conflict with Yoast SEO plugin.
933
+
934
+ = 1.12.5 =
935
+ * Added: Hong Kong to country list.
936
+ * Fixed: List of US states.
937
+
938
+ = 1.12.4 =
939
+ * Changed: Email validation field now allows + symbol
940
+ * Changed: Remove Font Awesome.
941
+ * Changed: Italian translation.
942
+
943
+ = 1.12.3 =
944
+ * Fixed: Get editor by id instead of active.
945
+ * Fixed: Not found form id redirect to main page.
946
+
947
+ = 1.12.2 =
948
+ * Fixed: Border types bug
949
+ * Fixed: Bug with PayPal IPN
950
+ * Fixed: Date format synchronization with Save Progress add-on
951
+
952
+ = 1.12.1 =
953
+ * Changed: Add field button design.
954
+ * Added: Show popup notice to install Backup WD plugin.
955
+
956
+ = 1.12.0 =
957
+ * Changed: Improved user interface of forms, submissions and options.
958
+ * Changed: Separated field types into Basic, User Info, Layout, Advanced and Payment sections.
959
+ * Changed: Simplified the structure of Form Options tabs.
960
+ * Added: Drag and Drop builder button.
961
+
962
+ = 1.11.11 =
963
+ * Fixed: Conflict with Jetpack Contact Form module.
964
+
965
+ = 1.11.8 =
966
+ * Updated: WD Library.
967
+
968
+ = 1.11.7 =
969
+ * Fixed: Theme version control.
970
+
971
+ = 1.11.6 =
972
+ * Fixed: Shortcode editor pop-up styles.
973
+ * Fixed: Scripts enqueue in Manage Forms page.
974
+ * Fixed: MySQL Mapping fields list scrolling.
975
+
976
+ = 1.11.5 =
977
+ * Fixed: Bug on CSV/XML export.
978
+ * Fixed: Google maps api conflict with other plugins.
979
+ * Changed: Improved Matrix type field view in submissions.
980
+ * Fixed: File upload field styles with "Inherit from website theme".
981
+
982
+ = 1.11.4 =
983
+ * Fixed: Bug on color picker when choosing transparency
984
+ * Fixed: Bug on submissions edit
985
+ * Fixed: Bug on "Inherit from website" theme
986
+ * Fixed: Bug on Paypal notifications
987
+ * Changed: Form Options tab id to avoid conflict with some plugins
988
+
989
+
990
+ = 1.11.3 =
991
+ * Added: Global option to enable Advanced Layout
992
+ * Changed: Themes table field name: `params` to `css`
993
+ * Fixed: Bug on PHP 5.2
994
+ * Fixed: Uninstall bug in free version
995
+ * Fixed: bug on generating Theme css
996
+ * Fixed: CSS conflict with some ajax themes
997
+
998
+ = 1.11.2 =
999
+ * Added: Overview page
1000
+ * Removed: Featured Plugins, Featured Themes pages
1001
+ * Fixed: Security issue
1002
+ * Fixed: Themes - bug on save as copy
1003
+
1004
+
1005
+ = 1.11.1 =
1006
+ * Removed: Old forms support (created with Form Maker versions < 1.7.0)
1007
+ * Added: Form Header
1008
+ * Added: New Themes
1009
+ * Added: New Theme Editor
1010
+ * Added: Form Display Options (Embedded, Popup, Topbar, Scrollbox)
1011
+ * Fixed: Database creation on some versions of MySQL
1012
+ * Fixed: Removed html tags from csv and xml
1013
+
1014
+ = 1.10.11 =
1015
+ * Added: Support forum links.
1016
+
1017
+ = 1.10.10 =
1018
+ * Fixed: Bug on arithmetic captcha
1019
+
1020
+ = 1.10.9 =
1021
+ * Changed: New logo
1022
+
1023
+ = 1.10.8 =
1024
+ * Added: New form field type: Phone with flag
1025
+ * Fixed: Bug on captcha reset
1026
+
1027
+ = 1.10.7 =
1028
+ * Changed: Improved captcha security
1029
+ * Fixed: Bug on matrix field
1030
+ * Fixed: Bug on conditional fields (for date field)
1031
+ * Added: Notification about old forms
1032
+
1033
+ = 1.10.6 =
1034
+ * Fixed: Bug on spinner field
1035
+ * Fixed: Bug on matrix field
1036
+
1037
+ = 1.10.5 =
1038
+ * Fixed: JS conflict on contact form submission
1039
+
1040
+ = 1.10.4 =
1041
+ * Fixed: Conflict with Yoast SEO plugin
1042
+ * Fixed: Line breaks in textarea after incorrect captcha
1043
+
1044
+ = 1.10.3 =
1045
+ * Fixed: Bug on PHP 5.3
1046
+
1047
+ = 1.10.2 =
1048
+ * 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.
1049
+
1050
+ = 1.10.1 =
1051
+ * Added: Verified emails list in csv, xml files
1052
+
1053
+ = 1.10 =
1054
+ * Changed: Field validation errors and notifications
1055
+ * Added: Real time field validation
1056
+ * Changed: Improved NL translation
1057
+ * Fixed: Bug on verified emails
1058
+
1059
+ = 1.9.18 =
1060
+ * Added: Filter verified emails and Export submissions with verified emails
1061
+
1062
+ = 1.9.17 =
1063
+ * Fixed: Bug with search by ID in Submissions
1064
+ * Fixed: Bug with Validation (Regular Exp.)
1065
+
1066
+ = 1.9.16 =
1067
+ * Fixed: Bug with Hidden field in custom text in Email
1068
+ * Fixed: Bug on email verification custom post
1069
+ * Added: Field type in field edit page
1070
+
1071
+ = 1.9.15 =
1072
+ * Added: Password Confirmation field
1073
+
1074
+ = 1.9.14 =
1075
+ * Fixed: Bug on CSV and XML export
1076
+
1077
+ = 1.9.13 =
1078
+ * Fixed: Bug on Field label position (Left/Top)
1079
+ * Fixed: JS error on IE 11 and Microsoft Edge
1080
+
1081
+ = 1.9.12 =
1082
+ * Added: Email Confirmation field
1083
+ * Fixed: Bug on CSV and XML export
1084
+
1085
+ = 1.9.11 =
1086
+ * Changed: Filters now apply to CSV and XML export
1087
+
1088
+ = 1.9.10 =
1089
+ * Fixed: Bug on "Advanced Layout"
1090
+
1091
+ = 1.9.9 =
1092
+ * Changed: Featured plugins page
1093
+
1094
+ = 1.9.8 =
1095
+ * Fixed: Unexpected behavior on pressing "Enter" key on back end form creator page
1096
+
1097
+ = 1.9.7 =
1098
+ * Fixed: JS error on incorrect Google Maps API key
1099
+ * Added: Alert about incorrect Google Maps API key
1100
+
1101
+ = 1.9.6 =
1102
+ * Added: Global option for Google Maps API key
1103
+ * Fixed: Google Maps API key warning in browser
1104
+
1105
+ = 1.9.5 =
1106
+ * Changed: Improvements in "Select options from database" pop-up window for Select box, single and multiple choices
1107
+ * Fixed: Back end minor style issues
1108
+
1109
+ = 1.9.3 =
1110
+ * Fixed: Bug with Date field in custom text in Email
1111
+ * Fixed: Bug on editing submissions with checkbox and radio fields with customized values
1112
+
1113
+ = 1.9.2 =
1114
+ * Added: "View" button on submissions to open a single submission in a separate pop-up window
1115
+ * Fixed: Minor bugs on editing submissions
1116
+
1117
+ = 1.9.1 =
1118
+ * Fixed: bug on date field on some browsers (Safari, Edge)
1119
+
1120
+ = 1.9 =
1121
+ * Changed: Improved Date picker functionality (new options: Dates to exclude, Default, Minimum, Maximum dates)
1122
+ * Added: New field type: Date Range
1123
+
1124
+ = 1.8.41 =
1125
+ * Fixed: Bug on conditional fields (for multiple contact forms on the same page)
1126
+
1127
+ = 1.8.40 =
1128
+ * Changed: Style of required field asterisk
1129
+ * Changed: Display the correct IDs and Names of the fields in the back end (Add/Edit field interface) to use in js/css
1130
+
1131
+ = 1.8.39 =
1132
+ * Fixed: Bug on Matrix field (additional attributes)
1133
+
1134
+ = 1.8.38 =
1135
+ * Fixed: Bug on Matrix field (special characters in row/column labels)
1136
+
1137
+ = 1.8.36 =
1138
+ * Fixed: Bug on long content in textarea fields
1139
+
1140
+ = 1.8.35 =
1141
+ * Fixed: Browser warning on Google Maps API version
1142
+ * Fixed: Phone field style issue on Mac OS
1143
+
1144
+ = 1.8.34 =
1145
+ * Fixed: Some minor style issues
1146
+
1147
+ = 1.8.33 =
1148
+ * Fixed: Bug in Address field
1149
+ * Fixed: Bug with Additional Attributes in Email field
1150
+ * Changed: before_submit() function functionality
1151
+
1152
+ = 1.8.32 =
1153
+ * New Add-on: Calculator
1154
+ Removed: deprecated Number field
1155
+
1156
+ = 1.8.31 =
1157
+ * Fixed: Issue with search in Submissions page
1158
+
1159
+ = 1.8.30 =
1160
+ * Added: Submission ID in csv export
1161
+
1162
+ = 1.8.29 =
1163
+ * Changed: Featured Plugins, Featured Themes pages design.
1164
+
1165
+ = 1.8.28 =
1166
+ * Fixed: Bug in Email Options
1167
+ * Fixed: Bug in Conditional Fields
1168
+ * Fixed: Bug in date field
1169
+
1170
+ = 1.8.27 =
1171
+ * Fixed: Bug in Conditional Fields
1172
+ * Fixed: Bug with Additional Attributes in Multiple Choice
1173
+
1174
+ = 1.8.26 =
1175
+ * Fixed: Submissions page styles
1176
+ * Fixed: Issue with IPv6
1177
+
1178
+ = 1.8.25 =
1179
+ * Fixed: Bug in conditional fields.
1180
+ * Changed: Featured Plugins, Featured Themes pages design.
1181
+
1182
+ = 1.8.24 =
1183
+ * Added: File upload as a link in email
1184
+
1185
+ = 1.8.23 =
1186
+ * Fixed: Bug in textarea field with line breaks
1187
+
1188
+ = 1.8.22 =
1189
+ * Fixed: Conflict with some plugins
1190
+
1191
+ = 1.8.21 =
1192
+ * Fixed: Bug in selec tbox
1193
+
1194
+ = 1.8.20 =
1195
+ * Added: Auto fill with user data for email address and name fields
1196
+
1197
+ = 1.8.19 =
1198
+ * Changed: Back End design
1199
+
1200
+ = 1.8.18 =
1201
+ * Added: Date format validation
1202
+ * Fixed: Recaptcha Validation bug
1203
+
1204
+ = 1.8.17 =
1205
+ * Added: Global Options
1206
+
1207
+ = 1.8.16 =
1208
+ * Fixed: User guide links
1209
+
1210
+ = 1.8.15 =
1211
+ * Changed: Back End Design for old forms
1212
+
1213
+ = 1.8.14 =
1214
+ * Fixed: Bug in PayPal field
1215
+ * Changed: Matrix field display in email
1216
+
1217
+ = 1.8.13 =
1218
+ * Fixed: Style in form builder edit page
1219
+ * Fixed: Bug in PayPal options
1220
+
1221
+ = 1.8.12 =
1222
+ * Changed: Submissions page styles
1223
+
1224
+ = 1.8.11 =
1225
+ * New Add-on: Stripe Integration
1226
+
1227
+ = 1.8.10 =
1228
+ * Fixed: Bug in name field
1229
+ * Fixed: Bug in captcha
1230
+
1231
+ = 1.8.9 =
1232
+ * New Add-on: Save Progress
1233
+
1234
+ = 1.8.8 =
1235
+ * Fixed: Minor bug
1236
+
1237
+ = 1.8.7 =
1238
+ * New: New year promo
1239
+
1240
+ = 1.8.6 =
1241
+ * Changed: Reset button
1242
+ * Fixed: Bug with scrolling in new field pop up
1243
+ * Fixed: Bug in MySql mapping on firefox browser
1244
+
1245
+ = 1.8.5 =
1246
+ * Fixed: Bug in mysql mapping.
1247
+ * Changed: Featured themes page.
1248
+
1249
+ = 1.8.4 =
1250
+ * Fixed: Bug in submissions
1251
+
1252
+ = 1.8.3 =
1253
+ * Changed: Backend design
1254
+
1255
+ = 1.8.2 =
1256
+ * New Add-on: Pushover Integration
1257
+
1258
+ = 1.8.1 =
1259
+ * Fixed: Bug in email options
1260
+ * Changed: Backend design
1261
+
1262
+ = 1.8.0 =
1263
+ * Changed: Backend design
1264
+
1265
+ = 1.7.97 =
1266
+ * Fixed: Bug in CSV/XML export
1267
+
1268
+ = 1.7.96 =
1269
+ * Added: Preview button
1270
+ * Changed: Conditional fields limitation
1271
+
1272
+ = 1.7.95 =
1273
+ * Changed: csv/xml export file directory
1274
+
1275
+ = 1.7.94 =
1276
+ * Added: Progress bar for csv/xml export
1277
+
1278
+ = 1.7.93 =
1279
+ * Fixed: Bug in mailing
1280
+ * Changed: Calendar styles
1281
+
1282
+ = 1.7.92 =
1283
+ * Fixed: Bug in mailing
1284
+
1285
+ = 1.7.91 =
1286
+ * Changed: Themes
1287
+ * Fixed: Bug in block ip
1288
+
1289
+ = 1.7.90 =
1290
+ * Fixed: Bug in CSV/XML export
1291
+
1292
+ = 1.7.89 =
1293
+ * Fixed: Conflict with some plugins
1294
+ * Changed: Styles
1295
+
1296
+ = 1.7.88 =
1297
+ * New: Double scroll in submissions page
1298
+ * New: Delete confirmation
1299
+ * Fixed: Bug in mysql mapping for conditional fields
1300
+
1301
+ = 1.7.87 =
1302
+ * Fixed: Bug in CSV/XML export
1303
+
1304
+ = 1.7.86 =
1305
+ * Changed: CSV/XML export
1306
+
1307
+ = 1.7.85 =
1308
+ * Fixed: Bug in conditional fields
1309
+
1310
+ = 1.7.84 =
1311
+ * New Add-on: PDF Integration
1312
+
1313
+ = 1.7.83 =
1314
+ * New: Google Drive Integration Add-on
1315
+
1316
+ = 1.7.82 =
1317
+ * Fixed: Bug in demo forms
1318
+
1319
+ = 1.7.81 =
1320
+ * Fixed: Bug in update
1321
+
1322
+ = 1.7.80 =
1323
+ * Changed: Notices
1324
+
1325
+ = 1.7.79 =
1326
+ * Fixed: Bug in update
1327
+
1328
+ = 1.7.78 =
1329
+ * Changed: Themes
1330
+
1331
+ = 1.7.77 =
1332
+ * New: Dropbox Integration Add-on
1333
+
1334
+ = 1.7.76 =
1335
+ * Changed: Licensing/Donation page
1336
+ * Changed: Notices
1337
+
1338
+ = 1.7.75 =
1339
+ * Changed: Submissions default ordering
1340
+ * Changed: Featured Plugins page
1341
+
1342
+ = 1.7.74 =
1343
+ * Fixed: Minor bugs
1344
+
1345
+ = 1.7.73 =
1346
+ * New: Notices
1347
+
1348
+ = 1.7.71 =
1349
+ * New Add-on: Conditional Emails
1350
+
1351
+ = 1.7.70 =
1352
+ * Changed: Styles
1353
+
1354
+ = 1.7.69 =
1355
+ Minor bug fixed
1356
+
1357
+ = 1.7.68 =
1358
+ * Changed: Compatibility with WordPress 4.3
1359
+
1360
+ = 1.7.67 =
1361
+ * Fixed: Bug in slider field
1362
+ * Fixed: Bug in address field
1363
+ * Fixed: Bug in mysql mapping
1364
+
1365
+ = 1.7.66 =
1366
+ * Fixed: Bug in Undo/Redo
1367
+
1368
+ = 1.7.65 =
1369
+ * New: Post Generation Add-on
1370
+
1371
+ = 1.7.64 =
1372
+ * Fixed: Minor bug
1373
+
1374
+ = 1.7.63 =
1375
+ * New: Add-ons page logo
1376
+
1377
+ = 1.7.62 =
1378
+ * New Add-on: User Registration
1379
+
1380
+ = 1.7.61 =
1381
+ * New: Form Maker Add-ons page
1382
+
1383
+ = 1.7.60 =
1384
+ * Fixed: Minor bug
1385
+
1386
+ = 1.7.59 =
1387
+ * Fixed: Bug in csv/xml export
1388
+
1389
+ = 1.7.58 =
1390
+ * Fixed: Minor bugs
1391
+ * Added: Email verification custom post
1392
+
1393
+ = 1.7.57 =
1394
+ * Fixed: Security issue
1395
+
1396
+ = 1.7.56 =
1397
+ * New: ReCaptcha version 2.0
1398
+ * New: Arithmetic Captcha
1399
+
1400
+ = 1.7.55 =
1401
+ * New: Undo/Redo form
1402
+
1403
+ = 1.7.54 =
1404
+ bug in conditional fields fixed
1405
+
1406
+ = 1.7.53 =
1407
+ bug in select field fixed
1408
+
1409
+ = 1.7.52 =
1410
+ minor bugs fixed
1411
+
1412
+ = 1.7.51 =
1413
+ * Changed: Featured plugins page.
1414
+ * New: Featured themes page.
1415
+
1416
+ = 1.7.50 =
1417
+ minor bugs fixed
1418
+
1419
+ = 1.7.49 =
1420
+ Limited up to 7 fields to add
1421
+ Bug fixed
1422
+
1423
+ = 1.7.48 =
1424
+ bug in radio and matrix fields fixed
1425
+
1426
+ = 1.7.47 =
1427
+ Show custom html and section break id
1428
+
1429
+ = 1.7.46 =
1430
+ Limited up to 9 fields to add
1431
+ * New: Enable/Disable Title and Middle Name for Name field
1432
+
1433
+ = 1.7.45 =
1434
+ * New: Option to disable past days in date picker
1435
+
1436
+ = 1.7.44 =
1437
+ security issue fixed
1438
+
1439
+ = 1.7.43 =
1440
+ * New: Email verification
1441
+
1442
+ = 1.7.42 =
1443
+ bug in recaptcha fixed
1444
+ change links
1445
+
1446
+ = 1.7.40 =
1447
+ Allow to use entry values in "Custom text after submission"
1448
+
1449
+ = 1.7.39 =
1450
+ * New: User information in mysql mapping
1451
+ * Fixed: Country names
1452
+
1453
+ = 1.7.38 =
1454
+ bug fixed in stats
1455
+ change field value type to longtext
1456
+
1457
+ = 1.7.37 =
1458
+ Optimize csv/xml export
1459
+
1460
+ = 1.7.35 =
1461
+ * New: Email empty fields option
1462
+
1463
+ = 1.7.34 =
1464
+ * New: Validation (Regular Exp.)
1465
+ * Fixed: Select field duplication
1466
+
1467
+ = 1.7.33 =
1468
+ bug in address field fixed
1469
+
1470
+ = 1.7.32 =
1471
+ bug fixed
1472
+
1473
+ = 1.7.31 =
1474
+ Bug fixed: Hidden field save to DB.
1475
+ * New: Drag and drop options in multiple, single choices and select box.
1476
+ * New: Select options from database.
1477
+ * New: Add image in email as image.
1478
+ * New: Additional clauses within conditional fields.
1479
+ * New: Search submissions by ID.
1480
+ * New: Submission ID in email.
1481
+
1482
+ = 1.7.30 =
1483
+ Cache issue fixed
1484
+
1485
+ = 1.7.29 =
1486
+ Bug fixed: Empty email "From name".
1487
+ Bug fixed: Delete theme.
1488
+
1489
+ = 1.7.28 =
1490
+ Bug fixed: Edit submissions.
1491
+ Bug fixed: Conditional fields with quota in labels
1492
+
1493
+ = 1.7.27 =
1494
+ bug fixed in csv\xml export
1495
+
1496
+ = 1.7.26 =
1497
+ bug fixed in email content
1498
+
1499
+ = 1.7.25 =
1500
+ remove fancybox lightbox
1501
+
1502
+ = 1.7.24 =
1503
+ display php function to publish contact form
1504
+
1505
+ = 1.7.23 =
1506
+ bug in Recaptcha fixed
1507
+
1508
+ = 1.7.22 =
1509
+ Form field reordering using Drag&Drop
1510
+
1511
+ = 1.7.21 =
1512
+ wp 4.0.1 shortcode issue fixed
1513
+
1514
+ = 1.7.18 =
1515
+ pagination with input
1516
+
1517
+ = 1.7.17 =
1518
+ bug fixed in condition fields
1519
+
1520
+ = 1.7.16 =
1521
+ show submitter information in popup (Country, CountryCode, City, Latitude, Longitude)
1522
+
1523
+ = 1.7.15 =
1524
+ bug fixed
1525
+
1526
+ = 1.7.14 =
1527
+ csv, xml export mark on map
1528
+
1529
+ = 1.7.13 =
1530
+ sql mapping
1531
+
1532
+ = 1.7.12 =
1533
+ extended name edit bug fixed (if first input is empty)
1534
+
1535
+ = 1.7.11 =
1536
+ hidden field edit bug fixed
1537
+
1538
+ = 1.7.10 =
1539
+ security issue fixed
1540
+
1541
+ = 1.7.9 =
1542
+ line break in custom text in email
1543
+
1544
+ = 1.7.8 =
1545
+ bug fixed in required radio field
1546
+
1547
+ = 1.7.7 =
1548
+ bug fixed in adding new contact form
1549
+
1550
+ = 1.7.6 =
1551
+ new email options, conditional fields
1552
+
1553
+ = 1.7.5 =
1554
+ conflict with Jetpack Contact Form module fixed
1555
+
1556
+ = 1.7.4 =
1557
+ bug fixed in form options
1558
+
1559
+ = 1.7.2 =
1560
+ improve themes
1561
+
1562
+ = 1.7.1 =
1563
+ bug fixed in email options
1564
+
1565
+ = 1.7 =
1566
+ Div structured, responsive form
1567
+ Editable html form layout
1568
+ New themes
1569
+
1570
+ = 1.6.6 =
1571
+ * fix security issue which was reported by Mateusz Lach
1572
+ = 1.6.4 =
1573
+ * Added featured plugins
1574
+ = 1.6.3 =
1575
+ * From Name, From Email in Form options
1576
+ = 1.5.0 =
1577
+ * Survey Tools (Star Rating, Scale Rating, Spinner, Slider, Range, Grading, Matrix)
1578
+ = 1.4.0 =
1579
+ * Customizable Email message for Administrator and Users
1580
+ = 1.3.0 =
1581
+ * Actions after form Submission:
1582
+ - Stay on form:
1583
+ - To go to Post,Page after the form submission:
1584
+ - Custom text after the form submission:
1585
+ - URL: The user is redirected to the provided URL after the form submission.
1586
+ * Edit javascript of the form:
1587
+ * Save as the copy of the form:
1588
+ * Themes: There are 43 standard themes included in Form Maker
1589
+ * New form fields:
1590
+ - Address field
1591
+ - Address mark on map form field
1592
+ - Number form field
1593
+ - Phone form field
1594
+ - Date 3 different form field
1595
+ - Time form field
1596
+ - Country list form field
1597
+ - Recaptcha form field
1598
+ * Pagebreak of the [Wordpress Form](http://wordpress.org/plugins/form-maker/) Maker: This can be used to break the form into distinct pages.
1599
+ * Section Break of the Form Maker: This option allows adding a section break to the form page.
1600
+ * For each web form certain types of statistical data are available in the form builder tool:
1601
+ * Entries of a form: The number of submitted forms in the form builder tool.
1602
+ * Views of a form: The number of times the form has been viewed.
1603
+ * Conversion Rate of a form: The percentage of submitted forms to the overall number of views.
1604
+
1605
+ = 1.0.0 =
1606
  Initial version