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

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.8.8
Comparing to
See all releases

Code changes from version 1.8.7 to 1.8.8

assets/wdhny.jpg DELETED
Binary file
css/notices.css CHANGED
@@ -6,7 +6,7 @@
6
  padding: 10px 40px 10px 125px;
7
  position: relative;
8
  }
9
-
10
  .fm-admin-notice-promo {
11
  background: #fff;
12
  border-top: 4px;
@@ -22,6 +22,7 @@
22
  display: table;
23
  clear: both;
24
  }
 
25
 
26
  .fm-admin-notice a {
27
  color: #10738B;
@@ -51,12 +52,13 @@
51
  font-weight: normal;
52
  margin: 5px 0;
53
  }
54
-
55
  .fm-close-promo{
56
  position: absolute;
57
  top: 5px;
58
  right: 5px;
59
  }
 
60
  .fm-notice-body:after {
61
  clear: both;
62
  content: "";
@@ -72,7 +74,7 @@
72
  .fm-blue {
73
  color: #10738B;
74
  }
75
-
76
  .fm_hny{
77
  background: url("../assets/wdhny.jpg") no-repeat;
78
  background-position: center;
@@ -85,3 +87,4 @@
85
  display: block;
86
  height: 100%;
87
  }
 
6
  padding: 10px 40px 10px 125px;
7
  position: relative;
8
  }
9
+ /*
10
  .fm-admin-notice-promo {
11
  background: #fff;
12
  border-top: 4px;
22
  display: table;
23
  clear: both;
24
  }
25
+ */
26
 
27
  .fm-admin-notice a {
28
  color: #10738B;
52
  font-weight: normal;
53
  margin: 5px 0;
54
  }
55
+ /*
56
  .fm-close-promo{
57
  position: absolute;
58
  top: 5px;
59
  right: 5px;
60
  }
61
+ */
62
  .fm-notice-body:after {
63
  clear: both;
64
  content: "";
74
  .fm-blue {
75
  color: #10738B;
76
  }
77
+ /*
78
  .fm_hny{
79
  background: url("../assets/wdhny.jpg") no-repeat;
80
  background-position: center;
87
  display: block;
88
  height: 100%;
89
  }
90
+ */
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.8.7
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -269,7 +269,7 @@ function register_fmemailverification_cpt(){
269
  // Activate plugin.
270
  function form_maker_activate() {
271
  $version = get_option("wd_form_maker_version");
272
- $new_version = '1.8.7';
273
  global $wpdb;
274
  if (!$version) {
275
  add_option("wd_form_maker_version", $new_version, '', 'no');
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.8.8
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
269
  // Activate plugin.
270
  function form_maker_activate() {
271
  $version = get_option("wd_form_maker_version");
272
+ $new_version = '1.8.8';
273
  global $wpdb;
274
  if (!$version) {
275
  add_option("wd_form_maker_version", $new_version, '', 'no');
form_maker_notices_class.php CHANGED
@@ -74,8 +74,8 @@ class FM_Notices {
74
  $current_date = current_time( "n/j/Y" );
75
  $start = ( isset( $admin_notices[ $slug ]['start'] ) ? $admin_notices[ $slug ]['start'] : $current_date );
76
  $start = date( "n/j/Y", strtotime( $start ) );
77
- $end = ( isset( $admin_notices[ $slug ]['end'] ) ? $admin_notices[ $slug ]['end'] : $start );
78
- $end = date( "n/j/Y", strtotime( $end ) );
79
  $date_array = explode( '/', $start );
80
  $interval = ( isset( $admin_notices[ $slug ]['int'] ) ? $admin_notices[ $slug ]['int'] : 0 );
81
  $date_array[1] += $interval;
@@ -105,7 +105,7 @@ class FM_Notices {
105
 
106
  // Get remaining query string
107
  $query_str = (isset($admin_notices[$slug]['later_link']) ? $admin_notices[$slug]['later_link'] : esc_url(add_query_arg('fm_admin_notice_ignore', $slug)));
108
- if ( strpos( $slug, 'promo' ) === false ) {
109
  // Admin notice display output
110
  echo '<div class="update-nag fm-admin-notice">';
111
  echo '<div class="fm-notice-logo"></div>';
@@ -120,6 +120,7 @@ class FM_Notices {
120
  </ul>';
121
  echo '<a href="' . $query_str . '" class="dashicons dashicons-dismiss"></a>';
122
  echo '</div>';
 
123
  } else {
124
  if ( strtotime( $end ) >= strtotime( $current_date ) ) {
125
  echo '<div class=" fm-admin-notice-promo">';
@@ -131,6 +132,7 @@ class FM_Notices {
131
  echo '</div>';
132
  }
133
  }
 
134
  $this->notice_spam += 1;
135
  $output_css = true;
136
  }
@@ -230,6 +232,7 @@ class FM_Notices {
230
  // Intentionally left blank
231
  }
232
  public function wd_admin_notices() {
 
233
  $promo_close = add_query_arg( array( 'fm_admin_notice_ignore' => 'fm_new_year_promo' ) );
234
  $notices['fm_new_year_promo'] = array(
235
  'title' => __( 'Hey! How\'s It Going?', 'form-maker' ),
@@ -239,6 +242,7 @@ class FM_Notices {
239
  'end' => '2016-01-01',
240
  'int' => 0
241
  );
 
242
  $two_week_review_ignore = add_query_arg(array('fm_admin_notice_ignore' => 'two_week_review'));
243
  $two_week_review_temp = add_query_arg(array('fm_admin_notice_temp_ignore' => 'two_week_review', 'int' => 14));
244
  $notices['two_week_review'] = array(
74
  $current_date = current_time( "n/j/Y" );
75
  $start = ( isset( $admin_notices[ $slug ]['start'] ) ? $admin_notices[ $slug ]['start'] : $current_date );
76
  $start = date( "n/j/Y", strtotime( $start ) );
77
+ // $end = ( isset( $admin_notices[ $slug ]['end'] ) ? $admin_notices[ $slug ]['end'] : $start );
78
+ // $end = date( "n/j/Y", strtotime( $end ) );
79
  $date_array = explode( '/', $start );
80
  $interval = ( isset( $admin_notices[ $slug ]['int'] ) ? $admin_notices[ $slug ]['int'] : 0 );
81
  $date_array[1] += $interval;
105
 
106
  // Get remaining query string
107
  $query_str = (isset($admin_notices[$slug]['later_link']) ? $admin_notices[$slug]['later_link'] : esc_url(add_query_arg('fm_admin_notice_ignore', $slug)));
108
+ // if ( strpos( $slug, 'promo' ) === false ) {
109
  // Admin notice display output
110
  echo '<div class="update-nag fm-admin-notice">';
111
  echo '<div class="fm-notice-logo"></div>';
120
  </ul>';
121
  echo '<a href="' . $query_str . '" class="dashicons dashicons-dismiss"></a>';
122
  echo '</div>';
123
+ /*
124
  } else {
125
  if ( strtotime( $end ) >= strtotime( $current_date ) ) {
126
  echo '<div class=" fm-admin-notice-promo">';
132
  echo '</div>';
133
  }
134
  }
135
+ */
136
  $this->notice_spam += 1;
137
  $output_css = true;
138
  }
232
  // Intentionally left blank
233
  }
234
  public function wd_admin_notices() {
235
+ /*
236
  $promo_close = add_query_arg( array( 'fm_admin_notice_ignore' => 'fm_new_year_promo' ) );
237
  $notices['fm_new_year_promo'] = array(
238
  'title' => __( 'Hey! How\'s It Going?', 'form-maker' ),
242
  'end' => '2016-01-01',
243
  'int' => 0
244
  );
245
+ */
246
  $two_week_review_ignore = add_query_arg(array('fm_admin_notice_ignore' => 'two_week_review'));
247
  $two_week_review_temp = add_query_arg(array('fm_admin_notice_temp_ignore' => 'two_week_review', 'int' => 14));
248
  $notices['two_week_review'] = array(
notices.php CHANGED
@@ -3,6 +3,8 @@
3
  if ( ! defined( 'ABSPATH' ) ) exit;
4
 
5
  function fm_admin_notices( $notices ) {
 
 
6
  $promo_close = add_query_arg( array( 'fm_admin_notice_ignore' => 'fm_new_year_promo' ) );
7
  $notices['fm_new_year_promo'] = array(
8
  'title' => __( 'Hey! How\'s It Going?', 'form-maker' ),
@@ -12,6 +14,7 @@ function fm_admin_notices( $notices ) {
12
  'end' => '2016-01-01',
13
  'int' => 0
14
  );
 
15
  $one_week_support = add_query_arg( array( 'fm_admin_notice_ignore' => 'one_week_support' ) );
16
  $notices['one_week_support'] = array(
17
  'title' => __( 'Hey! How\'s It Going?', 'form-maker' ),
3
  if ( ! defined( 'ABSPATH' ) ) exit;
4
 
5
  function fm_admin_notices( $notices ) {
6
+
7
+ /*
8
  $promo_close = add_query_arg( array( 'fm_admin_notice_ignore' => 'fm_new_year_promo' ) );
9
  $notices['fm_new_year_promo'] = array(
10
  'title' => __( 'Hey! How\'s It Going?', 'form-maker' ),
14
  'end' => '2016-01-01',
15
  'int' => 0
16
  );
17
+ */
18
  $one_week_support = add_query_arg( array( 'fm_admin_notice_ignore' => 'one_week_support' ) );
19
  $notices['one_week_support'] = array(
20
  'title' => __( 'Hey! How\'s It Going?', 'form-maker' ),
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
- Stable tag: 1.8.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -136,7 +136,7 @@ If you think you found a bug in Form Maker or have any problem/question concerni
136
  * CC and BCC mail options for sending out the submitted form
137
  * 41 responsive theme with customizable design
138
  * Displaying the country, country code and other date in the Submissions section IP pop-up
139
- * MySQL Mapping possibility for storing entered data to another MySQL database.
140
  * Possibility to choose whether to save the data to database or just have the information emailed to the Administrator.
141
  * Possibility to insert separate Country select list for the custom fields rather than address.
142
  * Conditional fields, which can be used for hiding/displaying a list of questions based on the selection of specific answers.
@@ -300,6 +300,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
300
 
301
  == Changelog ==
302
 
 
 
 
303
  = 1.8.7 =
304
  New: New year promo
305
 
@@ -704,13 +707,13 @@ If you want to update the form builder plugin while preserving your existing for
704
 
705
  = Step 3: Configuring Form Builder Options =
706
 
707
- 3.1 General Options
708
  Published. Choose whether to publish the form or leave it as a draft.
709
- Save data (to database). Choose whether to have the submitted forms in the submissions section or have them only sent to the Admin’s email (this should be done in Email Options section).
710
- Theme. A distinct theme can be applied to each new form. The themes can be accessed by selecting FormMaker > Themes on the top menu. A large number of themes is available for selection. You can preview the theme as well as make changes in the CSS of the theme to make desired changes with the button right next to it.
711
  Required fields mark. The required fields mark can be customized and changes from the default asterisk symbol.
712
 
713
- 3.2 Email Options.
714
  3.2.1 Send Email. Choose whether to send out emails based on the submitted forms to the Administrator/Submitter.
715
  Email to Administrator
716
  3.2.2 Email to send submissions to. Here you provide e-mails to which submitted form information is sent. If you need more than one e-mail address, you must separate them by commas.
@@ -729,12 +732,12 @@ Email to User
729
  3.3 Actions after Submission
730
  Here you can select the action that takes place after form submission. Following options are available:
731
  - Stay on form: The user stays on the form page.
732
- - Article: The user is redirected to the selected article.
733
  - Custom text: Custom text is displayed on the screen.
734
  - URL: The user is redirected to the provided URL.
735
 
736
- 3.4 Payment Options
737
- 3.4.1 Turn on PayPal. Allows making PayPal paymentsusing Form Maker.
738
  3.4.2 Checkout Mode. Choose the checkout mode:
739
  Production( https://developer.paypal.com/webapps/developer/docs/classic/lifecycle/goingLive/ )
740
  Test Mode ( https://developer.paypal.com/webapps/developer/docs/integration/direct/test-the-api/ )
@@ -748,7 +751,7 @@ Here you can define new JavaScript functions, which can be applied to the form.
748
  - before_submit(): before the form is submitted
749
  - before_reset(): before the form is reset
750
 
751
- 3.6 Conditional Fields.
752
  3.6.1 Add Condition. Using plus (+) button on the upper left hand you can connect specific fields. The following field types are allowed to be used as conditional fields: Simple text, Password, Textarea, Name, Address (Country field- only), Email, Number, Phone, Multiple Choice, Single Choice, Select, PayPal fields (with an exception of the Total field).
753
  The formula of the conditional fields is the following:
754
  For the main condition:
@@ -803,7 +806,7 @@ Type, Name, Class Name, Check the required fields , Additional Attributes.
803
  Location, Map Size, Marker Info, Class Name, Additional Attributes.
804
 
805
  4.12 PayPal: Choose the Field Type. The following options are available:
806
- Amount (Price) This field is for indicating the amount of payment. Default field labels can be edited clicking on the field label and typing in a custom label. You can configure the following attributes: Field Label, Field Label Position, Range, Value If Empty, Field Size, Class Name, Required, Hide Cents, and Additional Attributes.
807
  Select This field can be used for selecting a product/service for which the payment is being made. The list (each item consists of “Product name” and its “Price”)can be specified by the Options attribute. You can easily add and remove list items. There is also a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. The checked items are considered as empty values. You can configure the following attributes: Field Label, Field Label Position, Field Size, Class Name, Required, and Additional Attributes.
808
  Checkbox This field can be used for selecting multiple products/services for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.
809
  Radio This field can be used for selecting the product/service for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.
@@ -811,7 +814,7 @@ Shipping This field can be used for selecting the shipping option for the select
811
  Total This field calculates the total sum to be paid via PayPal, including the payments for the shipping and taxes (if applicable).
812
 
813
  4.13 Survey Tools: Choose the Field Type according to your preferences. There are several options:
814
- Star Rating: This field can be used for inserting star rating field in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Label Position, Star Amount, Star Color, Class Name, Required, and Additional Attributes.
815
  Scale Rating: This field can be used for inserting scale rating in the form. Type the name of the field to be displayed with the rating system.Default field labels for lowest/highest satisfaction/grading can be edited clicking on the field label and typing in a custom label. The field has several attributes: Field Label Position, Scale Amount, Class Name, Required, and Additional Attributes.
816
  Spinner: This field can be used for inserting spinner as a rating system in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Step, Class Name, Required, and Additional Attributes.
817
  Slider: This field can be used for inserting slider as a rating system in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Class Name, Required, and Additional Attributes.
@@ -855,8 +858,8 @@ Alternatively, you can use form builder without the button on the toolbar. Add t
855
 
856
  6.7 Form builder allows to edit the submissions by clicking on the “Edit” icon on the upper right corner of the “Submissions” section.
857
 
858
- 6.8 Form builder allows to add/remove any column of the submissions by “Add/Remove Columns” button.
859
-
860
 
 
 
861
 
862
- 6.9 The submissions can be exported to the CSV and XML formats.
4
  Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
+ Stable tag: 1.8.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
136
  * CC and BCC mail options for sending out the submitted form
137
  * 41 responsive theme with customizable design
138
  * Displaying the country, country code and other date in the Submissions section IP pop-up
139
+ * MySQL Mapping possibility for storing entered data to another tables.
140
  * Possibility to choose whether to save the data to database or just have the information emailed to the Administrator.
141
  * Possibility to insert separate Country select list for the custom fields rather than address.
142
  * Conditional fields, which can be used for hiding/displaying a list of questions based on the selection of specific answers.
300
 
301
  == Changelog ==
302
 
303
+ = 1.8.8 =
304
+ Fixed: Minor bug
305
+
306
  = 1.8.7 =
307
  New: New year promo
308
 
707
 
708
  = Step 3: Configuring Form Builder Options =
709
 
710
+ 3.1 Form General Options
711
  Published. Choose whether to publish the form or leave it as a draft.
712
+ Save data (to database). Choose whether to have the submitted forms in the form submissions section or have them only sent to the Admin’s email (this should be done in Email Options section).
713
+ Theme. A distinct form theme can be applied to each new form. The themes can be accessed by selecting Form Maker > Themes on the top menu. A large number of form themes is available for selection. You can preview the theme as well as make changes in the CSS of the theme to make desired changes with the button right next to it.
714
  Required fields mark. The required fields mark can be customized and changes from the default asterisk symbol.
715
 
716
+ 3.2 Form Email Options.
717
  3.2.1 Send Email. Choose whether to send out emails based on the submitted forms to the Administrator/Submitter.
718
  Email to Administrator
719
  3.2.2 Email to send submissions to. Here you provide e-mails to which submitted form information is sent. If you need more than one e-mail address, you must separate them by commas.
732
  3.3 Actions after Submission
733
  Here you can select the action that takes place after form submission. Following options are available:
734
  - Stay on form: The user stays on the form page.
735
+ - Post/Pages: The user is redirected to the selected Post/Pages.
736
  - Custom text: Custom text is displayed on the screen.
737
  - URL: The user is redirected to the provided URL.
738
 
739
+ 3.4 Form Payment Options
740
+ 3.4.1 Turn on PayPal. Allows making PayPal payments using Form Maker.
741
  3.4.2 Checkout Mode. Choose the checkout mode:
742
  Production( https://developer.paypal.com/webapps/developer/docs/classic/lifecycle/goingLive/ )
743
  Test Mode ( https://developer.paypal.com/webapps/developer/docs/integration/direct/test-the-api/ )
751
  - before_submit(): before the form is submitted
752
  - before_reset(): before the form is reset
753
 
754
+ 3.6 Form Conditional Fields.
755
  3.6.1 Add Condition. Using plus (+) button on the upper left hand you can connect specific fields. The following field types are allowed to be used as conditional fields: Simple text, Password, Textarea, Name, Address (Country field- only), Email, Number, Phone, Multiple Choice, Single Choice, Select, PayPal fields (with an exception of the Total field).
756
  The formula of the conditional fields is the following:
757
  For the main condition:
806
  Location, Map Size, Marker Info, Class Name, Additional Attributes.
807
 
808
  4.12 PayPal: Choose the Field Type. The following options are available:
809
+ Amount (Price) This field is for indicating the amount of payment. Default form field labels can be edited clicking on the form field label and typing in a custom label. You can configure the following attributes: Field Label, Field Label Position, Range, Value If Empty, Field Size, Class Name, Required, Hide Cents, and Additional Attributes.
810
  Select This field can be used for selecting a product/service for which the payment is being made. The list (each item consists of “Product name” and its “Price”)can be specified by the Options attribute. You can easily add and remove list items. There is also a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. The checked items are considered as empty values. You can configure the following attributes: Field Label, Field Label Position, Field Size, Class Name, Required, and Additional Attributes.
811
  Checkbox This field can be used for selecting multiple products/services for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.
812
  Radio This field can be used for selecting the product/service for which the payment is being made. The options (each item consists of “Product name” and its “Price”) can be specified by the Options attribute. You can easily add and remove list items. There is also a quantity property parameter where the quantity of products/services can be specified. Moreover, there is a Product Properties parameter, where you can add different properties (e.g. size) by specifying the type, the name, and adding options for selection. You can configure the following attributes: Field Label, Field Label Position, Relative Position, Class Name, Required, and Additional Attributes.
814
  Total This field calculates the total sum to be paid via PayPal, including the payments for the shipping and taxes (if applicable).
815
 
816
  4.13 Survey Tools: Choose the Field Type according to your preferences. There are several options:
817
+ Star Rating: This form field can be used for inserting star rating field in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Label Position, Star Amount, Star Color, Class Name, Required, and Additional Attributes.
818
  Scale Rating: This field can be used for inserting scale rating in the form. Type the name of the field to be displayed with the rating system.Default field labels for lowest/highest satisfaction/grading can be edited clicking on the field label and typing in a custom label. The field has several attributes: Field Label Position, Scale Amount, Class Name, Required, and Additional Attributes.
819
  Spinner: This field can be used for inserting spinner as a rating system in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Step, Class Name, Required, and Additional Attributes.
820
  Slider: This field can be used for inserting slider as a rating system in the form. Type the name of the field to be displayed with the rating system. The field has several attributes: Field Id, Field Name, Field Label, Field Label Position, Width, Min Value, Max Value, Class Name, Required, and Additional Attributes.
858
 
859
  6.7 Form builder allows to edit the submissions by clicking on the “Edit” icon on the upper right corner of the “Submissions” section.
860
 
861
+ 6.8 Form builder allows to add/remove any column of the submissions by “Add/Remove Columns” button.
 
862
 
863
+ 6.9 The submissions can be exported to the CSV and XML formats.
864
+
865