Formidable Forms – Form Builder for WordPress - Version 4.03.05

Version Description

  • New: Add a center alignment option for section headings.
  • Keep the add field & field options links fixed to prevent extra scrolling to add more fields.
  • Add live searching on the add-ons page.
  • Fix: When only one box was selected for the default value in a checkbox field, it wasn't being checked.
  • Fix: Recaptcha labels are included for accessibility.
Download this release

Release Info

Developer sswells
Plugin Icon 128x128 Formidable Forms – Form Builder for WordPress
Version 4.03.05
Comparing to
See all releases

Code changes from version 4.03.04 to 4.03.05

classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '4.03.04';
15
 
16
  /**
17
  * @since 1.07.02
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '4.03.05';
15
 
16
  /**
17
  * @since 1.07.02
classes/helpers/FrmFormsHelper.php CHANGED
@@ -1219,12 +1219,12 @@ BEFORE_HTML;
1219
  '' => array( 'align_right' ),
1220
  );
1221
 
1222
- if ( empty( $categories ) ) {
1223
- $icon = $icons[''];
1224
- } elseif ( count( $categories ) === 1 ) {
1225
  $category = reset( $categories );
1226
- $icon = $icons[ $category ];
1227
- } else {
1228
  foreach ( $icons as $cat => $icon ) {
1229
  if ( ! in_array( $cat, $categories ) ) {
1230
  unset( $icons[ $cat ] );
1219
  '' => array( 'align_right' ),
1220
  );
1221
 
1222
+ $icon = $icons[''];
1223
+
1224
+ if ( count( $categories ) === 1 ) {
1225
  $category = reset( $categories );
1226
+ $icon = isset( $icons[ $category ] ) ? $icons[ $category ] : $icon;
1227
+ } elseif ( ! empty( $categories ) ) {
1228
  foreach ( $icons as $cat => $icon ) {
1229
  if ( ! in_array( $cat, $categories ) ) {
1230
  unset( $icons[ $cat ] );
classes/models/FrmField.php CHANGED
@@ -729,7 +729,13 @@ class FrmField {
729
  private static function prepare_options( &$results ) {
730
  FrmAppHelper::unserialize_or_decode( $results->field_options );
731
  FrmAppHelper::unserialize_or_decode( $results->options );
 
 
 
732
  FrmAppHelper::unserialize_or_decode( $results->default_value );
 
 
 
733
  }
734
 
735
  /**
729
  private static function prepare_options( &$results ) {
730
  FrmAppHelper::unserialize_or_decode( $results->field_options );
731
  FrmAppHelper::unserialize_or_decode( $results->options );
732
+
733
+ // Allow a single box to be checked for the default value.
734
+ $before = $results->default_value;
735
  FrmAppHelper::unserialize_or_decode( $results->default_value );
736
+ if ( $before === $results->default_value && strpos( $before, '["' ) === 0 ) {
737
+ $results->default_value = FrmAppHelper::maybe_json_decode( $results->default_value );
738
+ }
739
  }
740
 
741
  /**
classes/models/fields/FrmFieldCaptcha.php CHANGED
@@ -11,12 +11,6 @@ class FrmFieldCaptcha extends FrmFieldType {
11
  */
12
  protected $type = 'captcha';
13
 
14
- /**
15
- * @var bool
16
- * @since 3.0
17
- */
18
- protected $has_for_label = false;
19
-
20
  /**
21
  * @return string
22
  */
11
  */
12
  protected $type = 'captcha';
13
 
 
 
 
 
 
 
14
  /**
15
  * @return string
16
  */
classes/views/addons/list.php CHANGED
@@ -10,10 +10,23 @@
10
 
11
  <?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
12
 
13
- <?php esc_html_e( 'Missing add-ons?', 'formidable' ); ?>
14
- <a href="#" id="frm_reconnect_link" class="frm-show-authorized" data-refresh="1">
15
- <?php esc_html_e( 'Check now for a recent upgrade or renewal', 'formidable' ); ?>
16
- </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  <div id="the-list" class="frm-addons">
19
  <?php foreach ( $addons as $slug => $addon ) { ?>
10
 
11
  <?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
12
 
13
+ <p class="alignleft">
14
+ <?php esc_html_e( 'Missing add-ons?', 'formidable' ); ?>
15
+ <a href="#" id="frm_reconnect_link" class="frm-show-authorized" data-refresh="1">
16
+ <?php esc_html_e( 'Check now for a recent upgrade or renewal', 'formidable' ); ?>
17
+ </a>
18
+ </p>
19
+
20
+ <?php
21
+ FrmAppHelper::show_search_box(
22
+ array(
23
+ 'input_id' => 'addon',
24
+ 'placeholder' => __( 'Search Add-ons', 'formidable' ),
25
+ 'tosearch' => 'frm-card',
26
+ )
27
+ );
28
+ ?>
29
+ <div class="clear"></div>
30
 
31
  <div id="the-list" class="frm-addons">
32
  <?php foreach ( $addons as $slug => $addon ) { ?>
classes/views/frm-fields/back-end/settings.php CHANGED
@@ -261,7 +261,7 @@ do_action( 'frm_before_field_options', $field );
261
  <p class="frm6 frm_form_field">
262
  <label><?php esc_html_e( 'Label Position', 'formidable' ); ?></label>
263
  <select name="field_options[label_<?php echo esc_attr( $field['id'] ); ?>]">
264
- <option value=""<?php selected( $field['label'], '' ); ?>>
265
  <?php esc_html_e( 'Default', 'formidable' ); ?>
266
  </option>
267
  <?php
@@ -275,6 +275,11 @@ do_action( 'frm_before_field_options', $field );
275
  <?php echo esc_html( $pos_label ); ?>
276
  </option>
277
  <?php } ?>
 
 
 
 
 
278
  </select>
279
  </p>
280
  <?php } ?>
261
  <p class="frm6 frm_form_field">
262
  <label><?php esc_html_e( 'Label Position', 'formidable' ); ?></label>
263
  <select name="field_options[label_<?php echo esc_attr( $field['id'] ); ?>]">
264
+ <option value="" <?php selected( $field['label'], '' ); ?>>
265
  <?php esc_html_e( 'Default', 'formidable' ); ?>
266
  </option>
267
  <?php
275
  <?php echo esc_html( $pos_label ); ?>
276
  </option>
277
  <?php } ?>
278
+ <?php if ( $field['type'] === 'divider' ) { ?>
279
+ <option value="center" <?php selected( $field['label'], 'center' ); ?>>
280
+ <?php esc_html_e( 'Center', 'formidable' ); ?>
281
+ </option>
282
+ <?php } ?>
283
  </select>
284
  </p>
285
  <?php } ?>
css/custom_theme.css.php CHANGED
@@ -98,6 +98,10 @@ legend.frm_hidden{
98
  margin-left:10px;
99
  }
100
 
 
 
 
 
101
  .with_frm_style .frm_none_container .frm_primary_label,
102
  .with_frm_style .frm_pos_none,
103
  .frm_pos_none,
98
  margin-left:10px;
99
  }
100
 
101
+ .with_frm_style .frm_pos_center {
102
+ text-align: center;
103
+ }
104
+
105
  .with_frm_style .frm_none_container .frm_primary_label,
106
  .with_frm_style .frm_pos_none,
107
  .frm_pos_none,
css/frm_admin.css CHANGED
@@ -740,6 +740,16 @@ p.frm_has_shortcodes {
740
  border-bottom: 2px solid var(--sidebar-hover);
741
  }
742
 
 
 
 
 
 
 
 
 
 
 
743
  .frm-inline-modal .frm-nav-tabs,
744
  #frm_adv_info .frm-nav-tabs {
745
  margin: 5px 0 10px;
@@ -1565,6 +1575,21 @@ div.frm_updated_message {
1565
  font-size: 17px;
1566
  }
1567
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1568
  .frm_pro_heading span {
1569
  margin-top: 10px;
1570
  }
740
  border-bottom: 2px solid var(--sidebar-hover);
741
  }
742
 
743
+ #frm-nav-tabs {
744
+ position: -webkit-sticky;
745
+ position: sticky;
746
+ top: 0;
747
+ background-color: var(--sidebar-color);
748
+ z-index: 1000;
749
+ margin-top: 0;
750
+ padding-top: 5px;
751
+ }
752
+
753
  .frm-inline-modal .frm-nav-tabs,
754
  #frm_adv_info .frm-nav-tabs {
755
  margin: 5px 0 10px;
1575
  font-size: 17px;
1576
  }
1577
 
1578
+ #frm-premium-templates .frm_ribbon {
1579
+ border: 15px solid transparent;
1580
+ border-bottom: 15px solid var(--orange);
1581
+ top: -4px;
1582
+ right: -21px;
1583
+ width: 16px;
1584
+ z-index: 1;
1585
+ }
1586
+
1587
+ #frm-premium-templates .frm_ribbon span {
1588
+ top: -2px;
1589
+ left: 3px;
1590
+ font-size: 15px;
1591
+ }
1592
+
1593
  .frm_pro_heading span {
1594
  margin-top: 10px;
1595
  }
formidable.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
- Version: 4.03.04
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
+ Version: 4.03.05
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable_admin.js CHANGED
@@ -5044,7 +5044,7 @@ function frmAdminBuildJS() {
5044
 
5045
  jQuery( document.getElementById( 'frm-insert-fields' ) ).on( 'click', '.frm_add_field', addFieldClick );
5046
  $newFields.on( 'click', '.frm_clone_field', duplicateField );
5047
- $builderForm.on( 'change', 'input[id^="frm_calc"]', checkCalculationCreatedByUser );
5048
  $builderForm.on( 'change', 'input.frm_format_opt', toggleInvalidMsg );
5049
  $builderForm.on( 'change click', '[data-changeme]', liveChanges );
5050
  $builderForm.on( 'click', 'input.frm_req_field', markRequired );
5044
 
5045
  jQuery( document.getElementById( 'frm-insert-fields' ) ).on( 'click', '.frm_add_field', addFieldClick );
5046
  $newFields.on( 'click', '.frm_clone_field', duplicateField );
5047
+ $builderForm.on( 'blur', 'input[id^="frm_calc"]', checkCalculationCreatedByUser );
5048
  $builderForm.on( 'change', 'input.frm_format_opt', toggleInvalidMsg );
5049
  $builderForm.on( 'change click', '[data-changeme]', liveChanges );
5050
  $builderForm.on( 'click', 'input.frm_req_field', markRequired );
languages/formidable.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Formidable Forms 4.03.04\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2019-11-14T17:28:32+01:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
@@ -477,11 +477,11 @@ msgstr ""
477
  msgid "Please select a lower number"
478
  msgstr ""
479
 
480
- #: classes/models/fields/FrmFieldCaptcha.php:152
481
  msgid "The captcha is missing from this form"
482
  msgstr ""
483
 
484
- #: classes/models/fields/FrmFieldCaptcha.php:169
485
  msgid "There was a problem verifying your recaptcha"
486
  msgstr ""
487
 
@@ -1355,7 +1355,7 @@ msgid "Category:"
1355
  msgstr ""
1356
 
1357
  #: classes/views/frm-forms/list-templates.php:163
1358
- #: classes/views/addons/list.php:15
1359
  msgid "Check now for a recent upgrade or renewal"
1360
  msgstr ""
1361
 
@@ -1757,7 +1757,7 @@ msgid "Deactivate"
1757
  msgstr ""
1758
 
1759
  #: classes/views/addons/settings.php:28
1760
- #: classes/views/addons/list.php:58
1761
  msgid "Activate"
1762
  msgstr ""
1763
 
@@ -1770,34 +1770,38 @@ msgstr ""
1770
  msgid "Formidable Add-Ons"
1771
  msgstr ""
1772
 
1773
- #: classes/views/addons/list.php:13
1774
  msgid "Missing add-ons?"
1775
  msgstr ""
1776
 
1777
- #: classes/views/addons/list.php:34
1778
- #: classes/views/addons/list.php:35
 
 
 
 
1779
  msgid "View Docs"
1780
  msgstr ""
1781
 
1782
  #. translators: %s: Status name
1783
- #: classes/views/addons/list.php:51
1784
  msgid "Status: %s"
1785
  msgstr ""
1786
 
1787
- #: classes/views/addons/list.php:61
1788
- #: classes/views/addons/list.php:62
1789
  #: classes/views/shared/upgrade_overlay.php:27
1790
  #: classes/helpers/FrmAppHelper.php:2209
1791
  msgid "Install"
1792
  msgstr ""
1793
 
1794
- #: classes/views/addons/list.php:65
1795
- #: classes/views/addons/list.php:69
1796
- #: classes/views/addons/list.php:70
1797
  msgid "Upgrade Now"
1798
  msgstr ""
1799
 
1800
- #: classes/views/addons/list.php:66
1801
  msgid "Renew Now"
1802
  msgstr ""
1803
 
@@ -2462,7 +2466,7 @@ msgid "%s Field"
2462
  msgstr ""
2463
 
2464
  #: classes/views/frm-fields/back-end/settings.php:34
2465
- #: classes/views/frm-fields/back-end/settings.php:330
2466
  msgid "Required"
2467
  msgstr ""
2468
 
@@ -2471,7 +2475,7 @@ msgid "Unique: Do not allow the same response multiple times. For example, if on
2471
  msgstr ""
2472
 
2473
  #: classes/views/frm-fields/back-end/settings.php:42
2474
- #: classes/views/frm-fields/back-end/settings.php:350
2475
  msgid "Unique"
2476
  msgstr ""
2477
 
@@ -2552,28 +2556,32 @@ msgstr ""
2552
  msgid "Default"
2553
  msgstr ""
2554
 
2555
- #: classes/views/frm-fields/back-end/settings.php:283
 
 
 
 
2556
  msgid "The field key can be used as an alternative to the field ID in many cases."
2557
  msgstr ""
2558
 
2559
- #: classes/views/frm-fields/back-end/settings.php:284
2560
  #: classes/helpers/FrmFormsHelper.php:461
2561
  msgid "Field Key"
2562
  msgstr ""
2563
 
2564
- #: classes/views/frm-fields/back-end/settings.php:292
2565
  msgid "Field Type"
2566
  msgstr ""
2567
 
2568
- #: classes/views/frm-fields/back-end/settings.php:322
2569
  msgid "Validation Messages"
2570
  msgstr ""
2571
 
2572
- #: classes/views/frm-fields/back-end/settings.php:339
2573
  msgid "Invalid Format"
2574
  msgstr ""
2575
 
2576
- #: classes/views/frm-fields/back-end/settings.php:361
2577
  msgid "Confirmation"
2578
  msgstr ""
2579
 
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 4.03.05\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2019-12-05T21:21:07+01:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
477
  msgid "Please select a lower number"
478
  msgstr ""
479
 
480
+ #: classes/models/fields/FrmFieldCaptcha.php:146
481
  msgid "The captcha is missing from this form"
482
  msgstr ""
483
 
484
+ #: classes/models/fields/FrmFieldCaptcha.php:163
485
  msgid "There was a problem verifying your recaptcha"
486
  msgstr ""
487
 
1355
  msgstr ""
1356
 
1357
  #: classes/views/frm-forms/list-templates.php:163
1358
+ #: classes/views/addons/list.php:16
1359
  msgid "Check now for a recent upgrade or renewal"
1360
  msgstr ""
1361
 
1757
  msgstr ""
1758
 
1759
  #: classes/views/addons/settings.php:28
1760
+ #: classes/views/addons/list.php:71
1761
  msgid "Activate"
1762
  msgstr ""
1763
 
1770
  msgid "Formidable Add-Ons"
1771
  msgstr ""
1772
 
1773
+ #: classes/views/addons/list.php:14
1774
  msgid "Missing add-ons?"
1775
  msgstr ""
1776
 
1777
+ #: classes/views/addons/list.php:24
1778
+ msgid "Search Add-ons"
1779
+ msgstr ""
1780
+
1781
+ #: classes/views/addons/list.php:47
1782
+ #: classes/views/addons/list.php:48
1783
  msgid "View Docs"
1784
  msgstr ""
1785
 
1786
  #. translators: %s: Status name
1787
+ #: classes/views/addons/list.php:64
1788
  msgid "Status: %s"
1789
  msgstr ""
1790
 
1791
+ #: classes/views/addons/list.php:74
1792
+ #: classes/views/addons/list.php:75
1793
  #: classes/views/shared/upgrade_overlay.php:27
1794
  #: classes/helpers/FrmAppHelper.php:2209
1795
  msgid "Install"
1796
  msgstr ""
1797
 
1798
+ #: classes/views/addons/list.php:78
1799
+ #: classes/views/addons/list.php:82
1800
+ #: classes/views/addons/list.php:83
1801
  msgid "Upgrade Now"
1802
  msgstr ""
1803
 
1804
+ #: classes/views/addons/list.php:79
1805
  msgid "Renew Now"
1806
  msgstr ""
1807
 
2466
  msgstr ""
2467
 
2468
  #: classes/views/frm-fields/back-end/settings.php:34
2469
+ #: classes/views/frm-fields/back-end/settings.php:335
2470
  msgid "Required"
2471
  msgstr ""
2472
 
2475
  msgstr ""
2476
 
2477
  #: classes/views/frm-fields/back-end/settings.php:42
2478
+ #: classes/views/frm-fields/back-end/settings.php:355
2479
  msgid "Unique"
2480
  msgstr ""
2481
 
2556
  msgid "Default"
2557
  msgstr ""
2558
 
2559
+ #: classes/views/frm-fields/back-end/settings.php:280
2560
+ msgid "Center"
2561
+ msgstr ""
2562
+
2563
+ #: classes/views/frm-fields/back-end/settings.php:288
2564
  msgid "The field key can be used as an alternative to the field ID in many cases."
2565
  msgstr ""
2566
 
2567
+ #: classes/views/frm-fields/back-end/settings.php:289
2568
  #: classes/helpers/FrmFormsHelper.php:461
2569
  msgid "Field Key"
2570
  msgstr ""
2571
 
2572
+ #: classes/views/frm-fields/back-end/settings.php:297
2573
  msgid "Field Type"
2574
  msgstr ""
2575
 
2576
+ #: classes/views/frm-fields/back-end/settings.php:327
2577
  msgid "Validation Messages"
2578
  msgstr ""
2579
 
2580
+ #: classes/views/frm-fields/back-end/settings.php:344
2581
  msgid "Invalid Format"
2582
  msgstr ""
2583
 
2584
+ #: classes/views/frm-fields/back-end/settings.php:366
2585
  msgid "Confirmation"
2586
  msgstr ""
2587
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.6
5
  Tested up to: 5.2.3
6
  Requires PHP: 5.6
7
- Stable tag: 4.03.04
8
 
9
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
10
 
@@ -12,7 +12,7 @@ The most advanced WordPress forms plugin. Go beyond contact forms with our drag
12
  = The Most Powerful WordPress form builder plugin on the market =
13
  We built <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms</a> to offer the "first-ever" solutions-focused WordPress form plugin on the market. You can use our drag & drop WordPress form builder plugin to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, calculator forms, and just about any other form you can imagine.
14
 
15
- At Formidable, creating the most extendable form builder plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!
16
 
17
  Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive so your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
18
 
@@ -31,7 +31,7 @@ Let's take a look at all the powerful form builder features that you get with Fo
31
 
32
  The Formidable drag & drop form builder allows you to quickly create unlimited surveys, quizzes, registration forms, and just about any other type of form that you want.
33
 
34
- Our form builder plugin comes with all the powerful form fields that you need to create a solution-focused form, fast!
35
 
36
  * Single line text (for names, phone numbers, addresses, and more)
37
  * Email
@@ -185,7 +185,7 @@ On top of that, our hooks and filters allow you to extend Formidable to meet you
185
  Since Formidable is not your average WordPress form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker plugin, your choice :)
186
 
187
  * <a href="https://formidableforms.com/features/drag-drop-form-builder/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Online drag and drop form builder</a>. Build everything from contact forms and email forms to calculators and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.
188
- * <a href="https://formidableforms.com/features/display-form-data-views/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Display form data with Views</a>. Other WordPress form builder plugins only let you collect data. Formidable lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.
189
  * <a href="https://formidableforms.com/features/dynamically-add-form-fields/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Repeating field groups (repeaters)</a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.
190
  * <a href="https://formidableforms.com/features/wordpress-multiple-file-upload-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Drag and drop multiple file upload forms</a>. Easily upload documents, files, photos, and music, with any number of files in job application forms (resumes), WordPress User Profile Forms (avatars), registration forms, and get a quote forms.
191
  * <a href="https://formidableforms.com/features/wordpress-multi-step-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Multi-step forms with progress bars</a>. Want to increase conversion rates and collect more leads with smart forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.
@@ -228,7 +228,7 @@ Since Formidable is not your average WordPress form plugin, this feature list is
228
  * <a href="https://formidableforms.com/knowledgebase/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">World class support</a>. Have questions or need guidance on how to use our contact form builder or set up your web application? We are happy to help. Our passion with Formidable is to help you <strong>defy the limits</strong> so you can take on bigger projects, earn more clients, and grow your business.
229
 
230
  = Payment Forms, Form APIs, and Marketing Integrations =
231
- In addition to all the form builder features listed above, power up your forms with these integrations.
232
 
233
  * <a href="https://formidableforms.com/features/paypal-wordpress-payments/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">PayPal Payment Forms</a>. Automate your business by collecting instant payments and recurring payments from clients. Collect information, calculate a total, and send clients to PayPal from your payment forms.
234
  * <a href="https://formidableforms.com/features/stripe-payments-for-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Stripe Payment Forms</a>. Keep users on your site while collecting payments from a credit card form. Select from one time and recurring charges in order forms and donation forms.
@@ -245,7 +245,7 @@ In addition to all the form builder features listed above, power up your forms w
245
  * <a href="https://formidableforms.com/features/form-entries-to-hubspot/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a>. Route lead form data from your WordPress forms to HubSpot CRM.
246
  * <a href="https://formidableforms.com/features/twilio-sms-form-notifications/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Twilio for SMS Forms</a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted. Get notified instantly when an important payment form is completed, and let your form leads know you received their message.
247
  * <a href="https://formidableforms.com/features/wpml-translated-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WPML Multilingual Forms</a>. Translate your WordPress forms into multiple languages using our integrated multilingual forms plugin.
248
- * <a href="https://formidableforms.com/features/polylang-multilingual-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Polylang Multilingual Forms</a>. Get the form creator with Polylang bilingual or multilingual contact forms. Use the form builder to make your form, then translate it without duplicate forms.
249
  * <a href="https://formidableforms.com/features/form-entry-routing-with-zapier/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Zapier Forms</a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a calculator form, payment form, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz form, and other online forms.
250
  * <a href="https://formidableforms.com/features/bootstrap-form-styling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Form Styles</a>. Instantly add Bootstrap form styling to survey forms and advanced forms.
251
  * <a href="https://formidableforms.com/features/bootstrap-modal-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Modal Form</a>. Open login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.
@@ -294,14 +294,14 @@ When you do not receive emails, try the following steps:
294
  1. Double check that your email address is present and correct in your Email form action on the form settings page of the form builder. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
295
  2. Are receiving other emails from your site (ie comment notifications, forgot password...)? If not, form emails will not work either.
296
  3. Check your SPAM box.
297
- 4. Try a different email address in your settings in the form builder.
298
  5. Install WP Mail SMPT or another similar emailing plugin and configure the SMTP settings.
299
  6. If none of these steps fix the email problem and no other WP emails are going out, please get in touch with your web host.
300
 
301
  <a href="https://formidableforms.com/wordpress-not-sending-emails-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Read more about WordPress emails not sending</a> in our blog.
302
 
303
  = What types of WordPress forms can I build with Formidable? =
304
- The Formidable drag & drop form builder combined with our add-ons is the most powerful form maker plugin and advanced form builder plugin on the market. Here are some types of WordPress forms you can create:
305
 
306
  * Simple & Advanced Forms
307
  * Custom Contact Forms
@@ -356,17 +356,16 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
356
  To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced forms, Formidable Views, graphs and stats, priority support, and Formidable Add-ons!
357
 
358
  == Changelog ==
 
 
 
 
 
 
 
359
  = 4.03.04 =
360
  * Better compatibility with WP 5.3.
361
  * Switch from using date to gmdate per WP codestyling recommendations.
362
  * Fix: Prevent undefined get_plugins error on some sites.
363
 
364
- = 4.03.03 =
365
- * Fix: There was an error on form submit when Pro was not installed.
366
-
367
- = 4.03.02 =
368
- * Add 'frm_form_object' hook run when a form is fetched from the database.
369
- * Include more education about field types, including the new Appointments field.
370
- * Fix: Dropdown fields weren't saving HTML values correctly.
371
-
372
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
4
  Requires at least: 4.6
5
  Tested up to: 5.2.3
6
  Requires PHP: 5.6
7
+ Stable tag: 4.03.05
8
 
9
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
10
 
12
  = The Most Powerful WordPress form builder plugin on the market =
13
  We built <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms</a> to offer the "first-ever" solutions-focused WordPress form plugin on the market. You can use our drag & drop WordPress form builder plugin to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, calculator forms, and just about any other form you can imagine.
14
 
15
+ At Formidable, creating the most extendable forms plugin is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form maker plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!
16
 
17
  Before we take a deep-dive into the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive so your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
18
 
31
 
32
  The Formidable drag & drop form builder allows you to quickly create unlimited surveys, quizzes, registration forms, and just about any other type of form that you want.
33
 
34
+ Our form maker plugin comes with all the powerful form fields that you need to create a solution-focused form, fast!
35
 
36
  * Single line text (for names, phone numbers, addresses, and more)
37
  * Email
185
  Since Formidable is not your average WordPress form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form maker plugin, your choice :)
186
 
187
  * <a href="https://formidableforms.com/features/drag-drop-form-builder/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Online drag and drop form builder</a>. Build everything from contact forms and email forms to calculators and complex online forms. Make amazing forms the easy way with a simple WordPress drag and drop form builder. No code required.
188
+ * <a href="https://formidableforms.com/features/display-form-data-views/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Display form data with Views</a>. Other WordPress form plugins only let you collect data. Formidable lets you format, filter, and display form submissions in custom Formidable Views on the front-end of your site. Views turn forms into solutions. Job boards, event calendars, business directories, ratings systems, and management solutions. If you can come up with it, most likely Formidable can handle it.
189
  * <a href="https://formidableforms.com/features/dynamically-add-form-fields/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Repeating field groups (repeaters)</a>. Allow your users to add sets of fields to registration forms, application forms, email forms, calculator forms, and other advanced forms on the fly.
190
  * <a href="https://formidableforms.com/features/wordpress-multiple-file-upload-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Drag and drop multiple file upload forms</a>. Easily upload documents, files, photos, and music, with any number of files in job application forms (resumes), WordPress User Profile Forms (avatars), registration forms, and get a quote forms.
191
  * <a href="https://formidableforms.com/features/wordpress-multi-step-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Multi-step forms with progress bars</a>. Want to increase conversion rates and collect more leads with smart forms? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for smart branching forms.
228
  * <a href="https://formidableforms.com/knowledgebase/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">World class support</a>. Have questions or need guidance on how to use our contact form builder or set up your web application? We are happy to help. Our passion with Formidable is to help you <strong>defy the limits</strong> so you can take on bigger projects, earn more clients, and grow your business.
229
 
230
  = Payment Forms, Form APIs, and Marketing Integrations =
231
+ In addition to all the features listed above, power up your forms with these integrations.
232
 
233
  * <a href="https://formidableforms.com/features/paypal-wordpress-payments/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">PayPal Payment Forms</a>. Automate your business by collecting instant payments and recurring payments from clients. Collect information, calculate a total, and send clients to PayPal from your payment forms.
234
  * <a href="https://formidableforms.com/features/stripe-payments-for-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Stripe Payment Forms</a>. Keep users on your site while collecting payments from a credit card form. Select from one time and recurring charges in order forms and donation forms.
245
  * <a href="https://formidableforms.com/features/form-entries-to-hubspot/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a>. Route lead form data from your WordPress forms to HubSpot CRM.
246
  * <a href="https://formidableforms.com/features/twilio-sms-form-notifications/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Twilio for SMS Forms</a>. Collect votes and poll responses via SMS text or send SMS notifications when form entries are submitted. Get notified instantly when an important payment form is completed, and let your form leads know you received their message.
247
  * <a href="https://formidableforms.com/features/wpml-translated-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WPML Multilingual Forms</a>. Translate your WordPress forms into multiple languages using our integrated multilingual forms plugin.
248
+ * <a href="https://formidableforms.com/features/polylang-multilingual-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Polylang Multilingual Forms</a>. Get the form creator with Polylang bilingual or multilingual contact forms. Make your form then translate it without duplicating forms.
249
  * <a href="https://formidableforms.com/features/form-entry-routing-with-zapier/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Zapier Forms</a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a calculator form, payment form, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz form, and other online forms.
250
  * <a href="https://formidableforms.com/features/bootstrap-form-styling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Form Styles</a>. Instantly add Bootstrap form styling to survey forms and advanced forms.
251
  * <a href="https://formidableforms.com/features/bootstrap-modal-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Modal Form</a>. Open login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.
294
  1. Double check that your email address is present and correct in your Email form action on the form settings page of the form builder. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
295
  2. Are receiving other emails from your site (ie comment notifications, forgot password...)? If not, form emails will not work either.
296
  3. Check your SPAM box.
297
+ 4. Try a different email address in your form settings.
298
  5. Install WP Mail SMPT or another similar emailing plugin and configure the SMTP settings.
299
  6. If none of these steps fix the email problem and no other WP emails are going out, please get in touch with your web host.
300
 
301
  <a href="https://formidableforms.com/wordpress-not-sending-emails-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Read more about WordPress emails not sending</a> in our blog.
302
 
303
  = What types of WordPress forms can I build with Formidable? =
304
+ The Formidable drag & drop form builder combined with our add-ons is the most powerful form maker plugin on the market. Here are some types of WordPress forms you can create:
305
 
306
  * Simple & Advanced Forms
307
  * Custom Contact Forms
356
  To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced forms, Formidable Views, graphs and stats, priority support, and Formidable Add-ons!
357
 
358
  == Changelog ==
359
+ = 4.03.05 =
360
+ * New: Add a center alignment option for section headings.
361
+ * Keep the add field & field options links fixed to prevent extra scrolling to add more fields.
362
+ * Add live searching on the add-ons page.
363
+ * Fix: When only one box was selected for the default value in a checkbox field, it wasn't being checked.
364
+ * Fix: Recaptcha labels are included for accessibility.
365
+
366
  = 4.03.04 =
367
  * Better compatibility with WP 5.3.
368
  * Switch from using date to gmdate per WP codestyling recommendations.
369
  * Fix: Prevent undefined get_plugins error on some sites.
370
 
 
 
 
 
 
 
 
 
371
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>