Formidable Forms – Form Builder for WordPress - Version 4.05.01

Version Description

  • Fix: The entry list wasn't always showing the entries.
  • Better sync between review requests in inbox and message.
Download this release

Release Info

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

Code changes from version 4.05 to 4.05.01

classes/controllers/FrmAppController.php CHANGED
@@ -8,9 +8,7 @@ class FrmAppController {
8
  return;
9
  }
10
 
11
- $unread = self::get_notice_count();
12
-
13
- $menu_name = FrmAppHelper::get_menu_name() . $unread;
14
  add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', self::menu_icon(), self::get_menu_position() );
15
  }
16
 
@@ -18,14 +16,6 @@ class FrmAppController {
18
  return apply_filters( 'frm_menu_position', '29.3' );
19
  }
20
 
21
- /**
22
- * @since 4.05
23
- */
24
- private static function get_notice_count() {
25
- $inbox = new FrmInbox();
26
- return $inbox->unread_html();
27
- }
28
-
29
  /**
30
  * @since 3.05
31
  */
@@ -365,7 +355,7 @@ class FrmAppController {
365
 
366
  public static function admin_js() {
367
  $version = FrmAppHelper::plugin_version();
368
- FrmAppHelper::load_admin_wide_js( false );
369
 
370
  $dependecies = array(
371
  'formidable_admin_global',
@@ -441,8 +431,6 @@ class FrmAppController {
441
  FrmAppHelper::localize_script( 'admin' );
442
  self::include_info_overlay();
443
  }
444
- } elseif ( $pagenow == 'widgets.php' ) {
445
- FrmAppHelper::load_admin_wide_js();
446
  }
447
  }
448
 
8
  return;
9
  }
10
 
11
+ $menu_name = FrmAppHelper::get_menu_name();
 
 
12
  add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', self::menu_icon(), self::get_menu_position() );
13
  }
14
 
16
  return apply_filters( 'frm_menu_position', '29.3' );
17
  }
18
 
 
 
 
 
 
 
 
 
19
  /**
20
  * @since 3.05
21
  */
355
 
356
  public static function admin_js() {
357
  $version = FrmAppHelper::plugin_version();
358
+ FrmAppHelper::load_admin_wide_js();
359
 
360
  $dependecies = array(
361
  'formidable_admin_global',
431
  FrmAppHelper::localize_script( 'admin' );
432
  self::include_info_overlay();
433
  }
 
 
434
  }
435
  }
436
 
classes/controllers/FrmEntriesController.php CHANGED
@@ -7,7 +7,9 @@ class FrmEntriesController {
7
 
8
  add_submenu_page( 'formidable', 'Formidable | ' . __( 'Entries', 'formidable' ), __( 'Entries', 'formidable' ), 'frm_view_entries', 'formidable-entries', 'FrmEntriesController::route' );
9
 
10
- self::load_manage_entries_hooks();
 
 
11
  }
12
 
13
  /**
7
 
8
  add_submenu_page( 'formidable', 'Formidable | ' . __( 'Entries', 'formidable' ), __( 'Entries', 'formidable' ), 'frm_view_entries', 'formidable-entries', 'FrmEntriesController::route' );
9
 
10
+ if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) ) {
11
+ self::load_manage_entries_hooks();
12
+ }
13
  }
14
 
15
  /**
classes/controllers/FrmInboxController.php CHANGED
@@ -49,6 +49,10 @@ class FrmInboxController {
49
  if ( ! empty( $key ) ) {
50
  $message = new FrmInbox();
51
  $message->dismiss( $key );
 
 
 
 
52
  }
53
 
54
  wp_die();
49
  if ( ! empty( $key ) ) {
50
  $message = new FrmInbox();
51
  $message->dismiss( $key );
52
+ if ( $key === 'review' ) {
53
+ $reviews = new FrmReviews();
54
+ $reviews->dismiss_review();
55
+ }
56
  }
57
 
58
  wp_die();
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '4.05';
15
 
16
  /**
17
  * @since 1.07.02
@@ -205,13 +205,7 @@ class FrmAppHelper {
205
  $page = self::simple_get( 'page', 'sanitize_title' );
206
  $is_formidable = strpos( $page, 'formidable' ) !== false;
207
  if ( empty( $page ) ) {
208
- global $pagenow;
209
- $post_type = self::simple_get( 'post_type', 'sanitize_title' );
210
- $is_formidable = ( $post_type == 'frm_display' );
211
- if ( empty( $post_type ) && $pagenow == 'post.php' ) {
212
- global $post;
213
- $is_formidable = ( $post && $post->post_type == 'frm_display' );
214
- }
215
  }
216
 
217
  return $is_formidable;
@@ -249,18 +243,19 @@ class FrmAppHelper {
249
  public static function is_view_builder_page() {
250
  global $pagenow;
251
 
252
- if ( $pagenow !== 'post.php' && $pagenow !== 'post-new.php' ) {
253
  return false;
254
  }
255
 
256
  $post_type = self::simple_get( 'post_type', 'sanitize_title' );
257
 
258
  if ( empty( $post_type ) ) {
259
- $post_id = self::simple_get( 'post', 'absint' );
260
- $post = get_post( $post_id );
261
- if ( ! empty( $post ) ) {
262
- $post_type = $post->post_type;
263
  }
 
264
  }
265
 
266
  return $post_type === 'frm_display';
@@ -1837,36 +1832,143 @@ class FrmAppHelper {
1837
 
1838
  $time_strings = self::get_time_strings();
1839
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1840
  foreach ( $time_strings as $k => $v ) {
1841
- if ( $diff[ $k ] ) {
1842
  $time_strings[ $k ] = $diff[ $k ] . ' ' . ( $diff[ $k ] > 1 ? $v[1] : $v[0] );
 
 
 
1843
  } else {
1844
  unset( $time_strings[ $k ] );
1845
  }
1846
  }
1847
 
1848
  $levels_deep = apply_filters( 'frm_time_ago_levels', $levels, compact( 'time_strings', 'from', 'to' ) );
1849
- $time_strings = array_slice( $time_strings, 0, $levels_deep );
1850
- $time_ago_string = $time_strings ? implode( ' ', $time_strings ) : '0 ' . __( 'seconds', 'formidable' );
1851
 
1852
  return $time_ago_string;
1853
  }
1854
 
1855
  /**
1856
- * Get the translatable time strings
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1857
  *
1858
  * @since 2.0.20
1859
  * @return array
1860
  */
1861
  private static function get_time_strings() {
1862
  return array(
1863
- 'y' => array( __( 'year', 'formidable' ), __( 'years', 'formidable' ) ),
1864
- 'm' => array( __( 'month', 'formidable' ), __( 'months', 'formidable' ) ),
1865
- 'w' => array( __( 'week', 'formidable' ), __( 'weeks', 'formidable' ) ),
1866
- 'd' => array( __( 'day', 'formidable' ), __( 'days', 'formidable' ) ),
1867
- 'h' => array( __( 'hour', 'formidable' ), __( 'hours', 'formidable' ) ),
1868
- 'i' => array( __( 'minute', 'formidable' ), __( 'minutes', 'formidable' ) ),
1869
- 's' => array( __( 'second', 'formidable' ), __( 'seconds', 'formidable' ) ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1870
  );
1871
  }
1872
 
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '4.05.01';
15
 
16
  /**
17
  * @since 1.07.02
205
  $page = self::simple_get( 'page', 'sanitize_title' );
206
  $is_formidable = strpos( $page, 'formidable' ) !== false;
207
  if ( empty( $page ) ) {
208
+ $is_formidable = self::is_view_builder_page();
 
 
 
 
 
 
209
  }
210
 
211
  return $is_formidable;
243
  public static function is_view_builder_page() {
244
  global $pagenow;
245
 
246
+ if ( $pagenow !== 'post.php' && $pagenow !== 'post-new.php' && $pagenow !== 'edit.php' ) {
247
  return false;
248
  }
249
 
250
  $post_type = self::simple_get( 'post_type', 'sanitize_title' );
251
 
252
  if ( empty( $post_type ) ) {
253
+ global $post;
254
+ if ( empty( $post ) ) {
255
+ $post_id = self::simple_get( 'post', 'absint' );
256
+ $post = get_post( $post_id );
257
  }
258
+ $post_type = $post ? $post->post_type : '';
259
  }
260
 
261
  return $post_type === 'frm_display';
1832
 
1833
  $time_strings = self::get_time_strings();
1834
 
1835
+ if ( ! is_numeric( $levels ) ) {
1836
+ // Show time in specified unit.
1837
+ $levels = self::get_unit( $levels );
1838
+ if ( isset( $time_strings[ $levels ] ) ) {
1839
+ $diff = array(
1840
+ $levels => self::time_format( $levels, $diff ),
1841
+ );
1842
+ $time_strings = array(
1843
+ $levels => $time_strings[ $levels ],
1844
+ );
1845
+ }
1846
+ $levels = 1;
1847
+ }
1848
+
1849
  foreach ( $time_strings as $k => $v ) {
1850
+ if ( isset( $diff[ $k ] ) && $diff[ $k ] ) {
1851
  $time_strings[ $k ] = $diff[ $k ] . ' ' . ( $diff[ $k ] > 1 ? $v[1] : $v[0] );
1852
+ } elseif ( isset( $diff[ $k ] ) && count( $time_strings ) === 1 ) {
1853
+ // Account for 0.
1854
+ $time_strings[ $k ] = $diff[ $k ] . ' ' . $v[1];
1855
  } else {
1856
  unset( $time_strings[ $k ] );
1857
  }
1858
  }
1859
 
1860
  $levels_deep = apply_filters( 'frm_time_ago_levels', $levels, compact( 'time_strings', 'from', 'to' ) );
1861
+ $time_strings = array_slice( $time_strings, 0, absint( $levels_deep ) );
1862
+ $time_ago_string = implode( ' ', $time_strings );
1863
 
1864
  return $time_ago_string;
1865
  }
1866
 
1867
  /**
1868
+ * @since 4.05.01
1869
+ */
1870
+ private static function time_format( $unit, $diff ) {
1871
+ $return = array(
1872
+ 'y' => 'y',
1873
+ 'd' => 'days',
1874
+ );
1875
+ if ( isset( $return[ $unit ] ) ) {
1876
+ return $diff[ $return[ $unit ] ];
1877
+ }
1878
+
1879
+ $total = $diff['days'] * self::convert_time( 'd', $unit );
1880
+
1881
+ $times = array( 'h', 'i', 's' );
1882
+
1883
+ foreach ( $times as $time ) {
1884
+ if ( ! isset( $diff[ $time ] ) ) {
1885
+ continue;
1886
+ }
1887
+
1888
+ $total += $diff[ $time ] * self::convert_time( $time, $unit );
1889
+ }
1890
+
1891
+ return floor( $total );
1892
+ }
1893
+
1894
+ /**
1895
+ * @since 4.05.01
1896
+ */
1897
+ private static function convert_time( $from, $to ) {
1898
+ $convert = array(
1899
+ 's' => 1,
1900
+ 'i' => MINUTE_IN_SECONDS,
1901
+ 'h' => HOUR_IN_SECONDS,
1902
+ 'd' => DAY_IN_SECONDS,
1903
+ 'w' => WEEK_IN_SECONDS,
1904
+ 'm' => DAY_IN_SECONDS * 30.42,
1905
+ 'y' => DAY_IN_SECONDS * 365.25,
1906
+ );
1907
+
1908
+ return $convert[ $from ] / $convert[ $to ];
1909
+ }
1910
+
1911
+ /**
1912
+ * @since 4.05.01
1913
+ */
1914
+ private static function get_unit( $unit ) {
1915
+ $units = self::get_time_strings();
1916
+ if ( isset( $units[ $unit ] ) || is_numeric( $unit ) ) {
1917
+ return $unit;
1918
+ }
1919
+
1920
+ foreach ( $units as $u => $strings ) {
1921
+ if ( in_array( $unit, $strings ) ) {
1922
+ return $u;
1923
+ }
1924
+ }
1925
+ return 1;
1926
+ }
1927
+
1928
+ /**
1929
+ * Get the translatable time strings. The untranslated version is a failsafe
1930
+ * in case langauges are changing for the unit set in the shortcode.
1931
  *
1932
  * @since 2.0.20
1933
  * @return array
1934
  */
1935
  private static function get_time_strings() {
1936
  return array(
1937
+ 'y' => array(
1938
+ __( 'year', 'formidable' ),
1939
+ __( 'years', 'formidable' ),
1940
+ 'year',
1941
+ ),
1942
+ 'm' => array(
1943
+ __( 'month', 'formidable' ),
1944
+ __( 'months', 'formidable' ),
1945
+ 'month',
1946
+ ),
1947
+ 'w' => array(
1948
+ __( 'week', 'formidable' ),
1949
+ __( 'weeks', 'formidable' ),
1950
+ 'week',
1951
+ ),
1952
+ 'd' => array(
1953
+ __( 'day', 'formidable' ),
1954
+ __( 'days', 'formidable' ),
1955
+ 'day',
1956
+ ),
1957
+ 'h' => array(
1958
+ __( 'hour', 'formidable' ),
1959
+ __( 'hours', 'formidable' ),
1960
+ 'hour',
1961
+ ),
1962
+ 'i' => array(
1963
+ __( 'minute', 'formidable' ),
1964
+ __( 'minutes', 'formidable' ),
1965
+ 'minute',
1966
+ ),
1967
+ 's' => array(
1968
+ __( 'second', 'formidable' ),
1969
+ __( 'seconds', 'formidable' ),
1970
+ 'second',
1971
+ ),
1972
  );
1973
  }
1974
 
classes/models/FrmReviews.php CHANGED
@@ -6,6 +6,8 @@ class FrmReviews {
6
 
7
  private $review_status = array();
8
 
 
 
9
  /**
10
  * Add admin notices as needed for reviews
11
  *
@@ -115,7 +117,7 @@ class FrmReviews {
115
  $message = new FrmInbox();
116
  $message->add_message(
117
  array(
118
- 'key' => 'review',
119
  'force' => true,
120
  'message' => __( 'If you are enjoying Formidable, could you do me a BIG favor and give us a review to help me grow my little business and boost our motivation?', 'formidable' ) . '<br/>' .
121
  '- Steph Wells<br/>' .
@@ -127,6 +129,22 @@ class FrmReviews {
127
  );
128
  }
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  /**
131
  * Save the request to hide the review
132
  *
@@ -144,6 +162,7 @@ class FrmReviews {
144
 
145
  if ( isset( $review['dismissed'] ) && $review['dismissed'] === 'done' ) {
146
  // if feedback was submitted, don't update it again when the review is dismissed
 
147
  wp_die();
148
  }
149
 
@@ -153,6 +172,7 @@ class FrmReviews {
153
  $review['asked'] = isset( $review['asked'] ) ? $review['asked'] + 1 : 1;
154
 
155
  update_user_meta( $user_id, $this->option_name, $review );
 
156
  wp_die();
157
  }
158
  }
6
 
7
  private $review_status = array();
8
 
9
+ private $inbox_key = 'review';
10
+
11
  /**
12
  * Add admin notices as needed for reviews
13
  *
117
  $message = new FrmInbox();
118
  $message->add_message(
119
  array(
120
+ 'key' => $this->inbox_key,
121
  'force' => true,
122
  'message' => __( 'If you are enjoying Formidable, could you do me a BIG favor and give us a review to help me grow my little business and boost our motivation?', 'formidable' ) . '<br/>' .
123
  '- Steph Wells<br/>' .
129
  );
130
  }
131
 
132
+ /**
133
+ * @since 4.05.01
134
+ */
135
+ private function set_inbox_dismissed() {
136
+ $message = new FrmInbox();
137
+ $message->dismiss( $this->inbox_key );
138
+ }
139
+
140
+ /**
141
+ * @since 4.05.01
142
+ */
143
+ private function set_inbox_read() {
144
+ $message = new FrmInbox();
145
+ $message->mark_read( $this->inbox_key );
146
+ }
147
+
148
  /**
149
  * Save the request to hide the review
150
  *
162
 
163
  if ( isset( $review['dismissed'] ) && $review['dismissed'] === 'done' ) {
164
  // if feedback was submitted, don't update it again when the review is dismissed
165
+ $this->set_inbox_dismissed();
166
  wp_die();
167
  }
168
 
172
  $review['asked'] = isset( $review['asked'] ) ? $review['asked'] + 1 : 1;
173
 
174
  update_user_meta( $user_id, $this->option_name, $review );
175
+ $this->set_inbox_read();
176
  wp_die();
177
  }
178
  }
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.05
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.05.01
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable_admin_global.js CHANGED
@@ -19,8 +19,17 @@ jQuery( document ).ready( function() {
19
  if ( typeof tb_remove === 'function' ) { // eslint-disable-line camelcase
20
  frmAdminPopup.init();
21
  }
 
 
22
  });
23
 
 
 
 
 
 
 
 
24
  function frm_install_now() { // eslint-disable-line camelcase
25
  var $msg = jQuery( document.getElementById( 'frm_install_message' ) );
26
  $msg.html( '<div class="frm_plugin_updating">' + frmGlobal.updating_msg + '<div class="spinner frm_spinner"></div></div>' );
19
  if ( typeof tb_remove === 'function' ) { // eslint-disable-line camelcase
20
  frmAdminPopup.init();
21
  }
22
+
23
+ frmMoveInboxBadge();
24
  });
25
 
26
+ function frmMoveInboxBadge() {
27
+ var link = jQuery( 'a[href="admin.php?page=formidable-inbox"] > span' );
28
+ if ( link.length ) {
29
+ jQuery( '#toplevel_page_formidable .wp-menu-name' ).append( link.clone() );
30
+ }
31
+ }
32
+
33
  function frm_install_now() { // eslint-disable-line camelcase
34
  var $msg = jQuery( document.getElementById( 'frm_install_message' ) );
35
  $msg.html( '<div class="frm_plugin_updating">' + frmGlobal.updating_msg + '<div class="spinner frm_spinner"></div></div>' );
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.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: 2020-06-09T22:44:03+02: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"
@@ -404,20 +404,20 @@ msgid "Total"
404
  msgstr ""
405
 
406
  #. translators: %s: User name, %2$d: number of entries
407
- #: classes/models/FrmReviews.php:103
408
  msgid "Congratulations%1$s! You have collected %2$d form submissions."
409
  msgstr ""
410
 
411
- #: classes/models/FrmReviews.php:120
412
  msgid "If you are enjoying Formidable, could you do me a BIG favor and give us a review to help me grow my little business and boost our motivation?"
413
  msgstr ""
414
 
415
- #: classes/models/FrmReviews.php:122
416
  #: classes/views/shared/review.php:18
417
  msgid "Founder and Lead Developer of Formidable Forms"
418
  msgstr ""
419
 
420
- #: classes/models/FrmReviews.php:125
421
  #: classes/views/shared/review.php:24
422
  msgid "Ok, you deserve it"
423
  msgstr ""
@@ -640,7 +640,7 @@ msgid "Installed"
640
  msgstr ""
641
 
642
  #: classes/controllers/FrmAddonsController.php:484
643
- #: classes/helpers/FrmAppHelper.php:2260
644
  msgid "Active"
645
  msgstr ""
646
 
@@ -660,37 +660,37 @@ msgstr ""
660
  msgid "Your plugin has been activated. Please reload the page to see more options."
661
  msgstr ""
662
 
663
- #: classes/controllers/FrmAppController.php:156
664
  msgid "Build"
665
  msgstr ""
666
 
667
- #: classes/controllers/FrmAppController.php:163
668
  #: classes/views/frm-forms/settings.php:8
669
  #: classes/views/frm-settings/form.php:9
670
  #: classes/helpers/FrmFormsListHelper.php:304
671
  msgid "Settings"
672
  msgstr ""
673
 
674
- #: classes/controllers/FrmAppController.php:170
675
  #: classes/controllers/FrmXMLController.php:133
676
  #: classes/controllers/FrmFormsController.php:729
677
  #: classes/controllers/FrmEntriesController.php:8
678
- #: classes/controllers/FrmEntriesController.php:90
679
  #: classes/views/xml/import_form.php:116
680
  msgid "Entries"
681
  msgstr ""
682
 
683
- #: classes/controllers/FrmAppController.php:181
684
- #: classes/controllers/FrmAppController.php:187
685
  msgid "Views"
686
  msgstr ""
687
 
688
- #: classes/controllers/FrmAppController.php:193
689
- #: classes/controllers/FrmAppController.php:199
690
  msgid "Reports"
691
  msgstr ""
692
 
693
- #: classes/controllers/FrmAppController.php:215
694
  msgid "Build a Form"
695
  msgstr ""
696
 
@@ -854,7 +854,7 @@ msgstr ""
854
  msgid "Inbox"
855
  msgstr ""
856
 
857
- #: classes/controllers/FrmInboxController.php:73
858
  msgid "Help Formidable improve with usage tracking"
859
  msgstr ""
860
 
@@ -924,7 +924,7 @@ msgstr ""
924
  #: classes/views/addons/list.php:75
925
  #: classes/views/shared/upgrade_overlay.php:27
926
  #: classes/helpers/FrmFormMigratorsHelper.php:130
927
- #: classes/helpers/FrmAppHelper.php:2259
928
  msgid "Install"
929
  msgstr ""
930
 
@@ -1113,7 +1113,7 @@ msgid "Add forms and content"
1113
  msgstr ""
1114
 
1115
  #: classes/controllers/FrmFormsController.php:630
1116
- #: classes/controllers/FrmEntriesController.php:74
1117
  #: classes/views/xml/import_form.php:147
1118
  #: classes/widgets/FrmShowForm.php:56
1119
  msgid "Form"
@@ -1258,7 +1258,7 @@ msgid "Entry ID"
1258
  msgstr ""
1259
 
1260
  #: classes/controllers/FrmFormsController.php:1182
1261
- #: classes/controllers/FrmEntriesController.php:69
1262
  #: classes/views/frm-entries/sidebar-shared.php:52
1263
  #: classes/views/frm-entries/form.php:52
1264
  msgid "Entry Key"
@@ -1377,37 +1377,37 @@ msgstr ""
1377
  msgid "%s form actions"
1378
  msgstr ""
1379
 
1380
- #: classes/controllers/FrmEntriesController.php:75
1381
  msgid "Entry Name"
1382
  msgstr ""
1383
 
1384
- #: classes/controllers/FrmEntriesController.php:76
1385
  #: classes/helpers/FrmCSVExportHelper.php:150
1386
  msgid "Created By"
1387
  msgstr ""
1388
 
1389
- #: classes/controllers/FrmEntriesController.php:79
1390
  msgid "Entry creation date"
1391
  msgstr ""
1392
 
1393
- #: classes/controllers/FrmEntriesController.php:80
1394
  msgid "Entry update date"
1395
  msgstr ""
1396
 
1397
- #: classes/controllers/FrmEntriesController.php:386
1398
  msgid "Your import is complete"
1399
  msgstr ""
1400
 
1401
  #. translators: %1$s: Time string
1402
- #: classes/controllers/FrmEntriesController.php:398
1403
  msgid "This form is in the trash and is scheduled to be deleted permanently in %s along with any entries."
1404
  msgstr ""
1405
 
1406
- #: classes/controllers/FrmEntriesController.php:417
1407
  msgid "You are trying to view an entry that does not exist."
1408
  msgstr ""
1409
 
1410
- #: classes/controllers/FrmEntriesController.php:445
1411
  msgid "Entry was Successfully Deleted"
1412
  msgstr ""
1413
 
@@ -1501,7 +1501,7 @@ msgstr ""
1501
  #: classes/views/frm-forms/new-form-overlay.php:31
1502
  #: classes/views/shared/confirm-overlay.php:14
1503
  #: classes/views/shared/admin-header.php:42
1504
- #: classes/helpers/FrmAppHelper.php:2220
1505
  msgid "Cancel"
1506
  msgstr ""
1507
 
@@ -1513,7 +1513,7 @@ msgstr ""
1513
  #: classes/views/shared/mb_adv_info.php:35
1514
  #: classes/views/shared/mb_adv_info.php:178
1515
  #: classes/views/frm-entries/list.php:42
1516
- #: classes/helpers/FrmAppHelper.php:906
1517
  msgid "Search"
1518
  msgstr ""
1519
 
@@ -1699,7 +1699,7 @@ msgid "Show Page Content"
1699
  msgstr ""
1700
 
1701
  #: classes/views/frm-forms/settings-advanced.php:93
1702
- #: classes/helpers/FrmAppHelper.php:1031
1703
  msgid "Select a Page"
1704
  msgstr ""
1705
 
@@ -2025,7 +2025,7 @@ msgstr ""
2025
 
2026
  #: classes/views/shared/confirm-overlay.php:10
2027
  #: classes/views/shared/info-overlay.php:10
2028
- #: classes/helpers/FrmAppHelper.php:2227
2029
  msgid "Are you sure?"
2030
  msgstr ""
2031
 
@@ -2127,7 +2127,7 @@ msgstr ""
2127
 
2128
  #: classes/views/shared/mb_adv_info.php:90
2129
  #: classes/helpers/FrmCSVExportHelper.php:154
2130
- #: classes/helpers/FrmAppHelper.php:2199
2131
  msgid "ID"
2132
  msgstr ""
2133
 
@@ -2137,7 +2137,7 @@ msgstr ""
2137
 
2138
  #: classes/views/shared/mb_adv_info.php:108
2139
  #: classes/views/shared/mb_adv_info.php:122
2140
- #: classes/helpers/FrmAppHelper.php:2261
2141
  msgid "Select a Field"
2142
  msgstr ""
2143
 
@@ -2748,7 +2748,7 @@ msgid "Label Position"
2748
  msgstr ""
2749
 
2750
  #: classes/views/frm-fields/back-end/settings.php:265
2751
- #: classes/helpers/FrmAppHelper.php:2221
2752
  msgid "Default"
2753
  msgstr ""
2754
 
@@ -3435,7 +3435,7 @@ msgid "See all forms."
3435
  msgstr ""
3436
 
3437
  #: classes/helpers/FrmFormsListHelper.php:114
3438
- #: classes/helpers/FrmAppHelper.php:891
3439
  msgid "Add New"
3440
  msgstr ""
3441
 
@@ -3487,7 +3487,7 @@ msgid "Draft"
3487
  msgstr ""
3488
 
3489
  #: classes/helpers/FrmFieldsHelper.php:286
3490
- #: classes/helpers/FrmAppHelper.php:2232
3491
  msgid "The entered values do not match"
3492
  msgstr ""
3493
 
@@ -3498,7 +3498,7 @@ msgstr ""
3498
 
3499
  #: classes/helpers/FrmFieldsHelper.php:456
3500
  #: classes/helpers/FrmFieldsHelper.php:457
3501
- #: classes/helpers/FrmAppHelper.php:2236
3502
  msgid "New Option"
3503
  msgstr ""
3504
 
@@ -4698,7 +4698,7 @@ msgid "Excerpt View"
4698
  msgstr ""
4699
 
4700
  #: classes/helpers/FrmListHelper.php:257
4701
- #: classes/helpers/FrmAppHelper.php:2262
4702
  msgid "No items found."
4703
  msgstr ""
4704
 
@@ -4970,7 +4970,7 @@ msgid "Is this intentional?"
4970
  msgstr ""
4971
 
4972
  #: classes/helpers/FrmFormsHelper.php:1453
4973
- #: classes/helpers/FrmAppHelper.php:2256
4974
  msgid "See the list of reserved words in WordPress."
4975
  msgstr ""
4976
 
@@ -5020,556 +5020,555 @@ msgstr ""
5020
  msgid "Parent ID"
5021
  msgstr ""
5022
 
5023
- #: classes/helpers/FrmAppHelper.php:1162
5024
  msgid "View Forms"
5025
  msgstr ""
5026
 
5027
- #: classes/helpers/FrmAppHelper.php:1163
5028
  msgid "Add and Edit Forms"
5029
  msgstr ""
5030
 
5031
- #: classes/helpers/FrmAppHelper.php:1164
5032
  msgid "Delete Forms"
5033
  msgstr ""
5034
 
5035
- #: classes/helpers/FrmAppHelper.php:1165
5036
  msgid "Access this Settings Page"
5037
  msgstr ""
5038
 
5039
- #: classes/helpers/FrmAppHelper.php:1166
5040
  msgid "View Entries from Admin Area"
5041
  msgstr ""
5042
 
5043
- #: classes/helpers/FrmAppHelper.php:1167
5044
  msgid "Delete Entries from Admin Area"
5045
  msgstr ""
5046
 
5047
- #: classes/helpers/FrmAppHelper.php:1174
5048
  msgid "Add Entries from Admin Area"
5049
  msgstr ""
5050
 
5051
- #: classes/helpers/FrmAppHelper.php:1175
5052
  msgid "Edit Entries from Admin Area"
5053
  msgstr ""
5054
 
5055
- #: classes/helpers/FrmAppHelper.php:1176
5056
  msgid "View Reports"
5057
  msgstr ""
5058
 
5059
- #: classes/helpers/FrmAppHelper.php:1177
5060
  msgid "Add/Edit Views"
5061
  msgstr ""
5062
 
5063
- #: classes/helpers/FrmAppHelper.php:1799
5064
  msgid "at"
5065
  msgstr ""
5066
 
5067
- #: classes/helpers/FrmAppHelper.php:1850
5068
- #: classes/helpers/FrmAppHelper.php:1869
5069
- msgid "seconds"
5070
- msgstr ""
5071
-
5072
- #: classes/helpers/FrmAppHelper.php:1863
5073
  msgid "year"
5074
  msgstr ""
5075
 
5076
- #: classes/helpers/FrmAppHelper.php:1863
5077
  msgid "years"
5078
  msgstr ""
5079
 
5080
- #: classes/helpers/FrmAppHelper.php:1864
5081
  msgid "month"
5082
  msgstr ""
5083
 
5084
- #: classes/helpers/FrmAppHelper.php:1864
5085
  msgid "months"
5086
  msgstr ""
5087
 
5088
- #: classes/helpers/FrmAppHelper.php:1865
5089
  msgid "week"
5090
  msgstr ""
5091
 
5092
- #: classes/helpers/FrmAppHelper.php:1865
5093
  msgid "weeks"
5094
  msgstr ""
5095
 
5096
- #: classes/helpers/FrmAppHelper.php:1866
5097
  msgid "day"
5098
  msgstr ""
5099
 
5100
- #: classes/helpers/FrmAppHelper.php:1866
5101
  msgid "days"
5102
  msgstr ""
5103
 
5104
- #: classes/helpers/FrmAppHelper.php:1867
5105
  msgid "hour"
5106
  msgstr ""
5107
 
5108
- #: classes/helpers/FrmAppHelper.php:1867
5109
  msgid "hours"
5110
  msgstr ""
5111
 
5112
- #: classes/helpers/FrmAppHelper.php:1868
5113
  msgid "minute"
5114
  msgstr ""
5115
 
5116
- #: classes/helpers/FrmAppHelper.php:1868
5117
  msgid "minutes"
5118
  msgstr ""
5119
 
5120
- #: classes/helpers/FrmAppHelper.php:1869
5121
  msgid "second"
5122
  msgstr ""
5123
 
5124
- #: classes/helpers/FrmAppHelper.php:1961
 
 
 
 
5125
  msgid "Give this action a label for easy reference."
5126
  msgstr ""
5127
 
5128
- #: classes/helpers/FrmAppHelper.php:1962
5129
  msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
5130
  msgstr ""
5131
 
5132
- #: classes/helpers/FrmAppHelper.php:1963
5133
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
5134
  msgstr ""
5135
 
5136
- #: classes/helpers/FrmAppHelper.php:1964
5137
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
5138
  msgstr ""
5139
 
5140
- #: classes/helpers/FrmAppHelper.php:1965
5141
  msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
5142
  msgstr ""
5143
 
5144
- #: classes/helpers/FrmAppHelper.php:1966
5145
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
5146
  msgstr ""
5147
 
5148
  #. translators: %1$s: Form name, %2$s: Date
5149
- #: classes/helpers/FrmAppHelper.php:1968
5150
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
5151
  msgstr ""
5152
 
5153
- #: classes/helpers/FrmAppHelper.php:2162
5154
- #: classes/helpers/FrmAppHelper.php:2241
5155
  msgid "Please wait while your site updates."
5156
  msgstr ""
5157
 
5158
- #: classes/helpers/FrmAppHelper.php:2163
5159
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
5160
  msgstr ""
5161
 
5162
- #: classes/helpers/FrmAppHelper.php:2166
5163
- #: classes/helpers/FrmAppHelper.php:2195
5164
  msgid "Loading&hellip;"
5165
  msgstr ""
5166
 
5167
- #: classes/helpers/FrmAppHelper.php:2196
5168
  msgid "Remove"
5169
  msgstr ""
5170
 
5171
- #: classes/helpers/FrmAppHelper.php:2200
5172
  msgid "No results match"
5173
  msgstr ""
5174
 
5175
- #: classes/helpers/FrmAppHelper.php:2201
5176
  msgid "That file looks like Spam."
5177
  msgstr ""
5178
 
5179
- #: classes/helpers/FrmAppHelper.php:2202
5180
  msgid "There is an error in the calculation in the field with key"
5181
  msgstr ""
5182
 
5183
- #: classes/helpers/FrmAppHelper.php:2203
5184
  msgid "Please complete the preceding required fields before uploading a file."
5185
  msgstr ""
5186
 
5187
- #: classes/helpers/FrmAppHelper.php:2214
5188
  msgid "(Click to add description)"
5189
  msgstr ""
5190
 
5191
- #: classes/helpers/FrmAppHelper.php:2215
5192
  msgid "(Blank)"
5193
  msgstr ""
5194
 
5195
- #: classes/helpers/FrmAppHelper.php:2216
5196
  msgid "(no label)"
5197
  msgstr ""
5198
 
5199
- #: classes/helpers/FrmAppHelper.php:2217
5200
  msgid "Saving"
5201
  msgstr ""
5202
 
5203
- #: classes/helpers/FrmAppHelper.php:2218
5204
  msgid "Saved"
5205
  msgstr ""
5206
 
5207
- #: classes/helpers/FrmAppHelper.php:2219
5208
  msgid "OK"
5209
  msgstr ""
5210
 
5211
- #: classes/helpers/FrmAppHelper.php:2222
5212
  msgid "Clear default value when typing"
5213
  msgstr ""
5214
 
5215
- #: classes/helpers/FrmAppHelper.php:2223
5216
  msgid "Do not clear default value when typing"
5217
  msgstr ""
5218
 
5219
- #: classes/helpers/FrmAppHelper.php:2224
5220
  msgid "Default value will pass form validation"
5221
  msgstr ""
5222
 
5223
- #: classes/helpers/FrmAppHelper.php:2225
5224
  msgid "Default value will NOT pass form validation"
5225
  msgstr ""
5226
 
5227
- #: classes/helpers/FrmAppHelper.php:2226
5228
  msgid "Heads up"
5229
  msgstr ""
5230
 
5231
- #: classes/helpers/FrmAppHelper.php:2228
5232
  msgid "Are you sure you want to delete this field and all data associated with it?"
5233
  msgstr ""
5234
 
5235
- #: classes/helpers/FrmAppHelper.php:2229
5236
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
5237
  msgstr ""
5238
 
5239
- #: classes/helpers/FrmAppHelper.php:2230
5240
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
5241
  msgstr ""
5242
 
5243
- #: classes/helpers/FrmAppHelper.php:2233
5244
  msgid "Enter Email"
5245
  msgstr ""
5246
 
5247
- #: classes/helpers/FrmAppHelper.php:2234
5248
  msgid "Confirm Email"
5249
  msgstr ""
5250
 
5251
- #: classes/helpers/FrmAppHelper.php:2235
5252
  msgid "Conditional content here"
5253
  msgstr ""
5254
 
5255
- #: classes/helpers/FrmAppHelper.php:2237
5256
  msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
5257
  msgstr ""
5258
 
5259
- #: classes/helpers/FrmAppHelper.php:2238
5260
  msgid "Enter Password"
5261
  msgstr ""
5262
 
5263
- #: classes/helpers/FrmAppHelper.php:2239
5264
  msgid "Confirm Password"
5265
  msgstr ""
5266
 
5267
- #: classes/helpers/FrmAppHelper.php:2240
5268
  msgid "Import Complete"
5269
  msgstr ""
5270
 
5271
- #: classes/helpers/FrmAppHelper.php:2242
5272
  msgid "Warning: There is no way to retrieve unsaved entries."
5273
  msgstr ""
5274
 
5275
- #: classes/helpers/FrmAppHelper.php:2243
5276
  msgid "Private"
5277
  msgstr ""
5278
 
5279
- #: classes/helpers/FrmAppHelper.php:2246
5280
  msgid "No new licenses were found"
5281
  msgstr ""
5282
 
5283
- #: classes/helpers/FrmAppHelper.php:2247
5284
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
5285
  msgstr ""
5286
 
5287
- #: classes/helpers/FrmAppHelper.php:2248
5288
  msgid "This calculation may have shortcodes that work in Views but not forms."
5289
  msgstr ""
5290
 
5291
- #: classes/helpers/FrmAppHelper.php:2249
5292
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
5293
  msgstr ""
5294
 
5295
- #: classes/helpers/FrmAppHelper.php:2250
5296
  msgid "This form action is limited to one per form. Please edit the existing form action."
5297
  msgstr ""
5298
 
5299
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
5300
- #: classes/helpers/FrmAppHelper.php:2253
5301
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
5302
  msgstr ""
5303
 
5304
  #. Translators: %s is the name of a parameter that is a reserved word. More than one word could be listed here, though that would not be common.
5305
- #: classes/helpers/FrmAppHelper.php:2255
5306
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
5307
  msgstr ""
5308
 
5309
- #: classes/helpers/FrmAppHelper.php:2257
5310
  msgid "Please enter a Repeat Limit that is greater than 1."
5311
  msgstr ""
5312
 
5313
- #: classes/helpers/FrmAppHelper.php:2258
5314
  msgid "Please select a limit between 0 and 200."
5315
  msgstr ""
5316
 
5317
- #: classes/helpers/FrmAppHelper.php:2289
5318
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
5319
  msgstr ""
5320
 
5321
- #: classes/helpers/FrmAppHelper.php:2316
5322
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
5323
  msgstr ""
5324
 
5325
- #: classes/helpers/FrmAppHelper.php:2344
5326
  msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
5327
  msgstr ""
5328
 
5329
- #: classes/helpers/FrmAppHelper.php:2350
5330
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
5331
  msgstr ""
5332
 
5333
- #: classes/helpers/FrmAppHelper.php:2364
5334
  msgid "English"
5335
  msgstr ""
5336
 
5337
- #: classes/helpers/FrmAppHelper.php:2365
5338
  msgid "Afrikaans"
5339
  msgstr ""
5340
 
5341
- #: classes/helpers/FrmAppHelper.php:2366
5342
  msgid "Albanian"
5343
  msgstr ""
5344
 
5345
- #: classes/helpers/FrmAppHelper.php:2367
5346
  msgid "Arabic"
5347
  msgstr ""
5348
 
5349
- #: classes/helpers/FrmAppHelper.php:2368
5350
  msgid "Armenian"
5351
  msgstr ""
5352
 
5353
- #: classes/helpers/FrmAppHelper.php:2369
5354
  msgid "Azerbaijani"
5355
  msgstr ""
5356
 
5357
- #: classes/helpers/FrmAppHelper.php:2370
5358
  msgid "Basque"
5359
  msgstr ""
5360
 
5361
- #: classes/helpers/FrmAppHelper.php:2371
5362
  msgid "Bosnian"
5363
  msgstr ""
5364
 
5365
- #: classes/helpers/FrmAppHelper.php:2372
5366
  msgid "Bulgarian"
5367
  msgstr ""
5368
 
5369
- #: classes/helpers/FrmAppHelper.php:2373
5370
  msgid "Catalan"
5371
  msgstr ""
5372
 
5373
- #: classes/helpers/FrmAppHelper.php:2374
5374
  msgid "Chinese Hong Kong"
5375
  msgstr ""
5376
 
5377
- #: classes/helpers/FrmAppHelper.php:2375
5378
  msgid "Chinese Simplified"
5379
  msgstr ""
5380
 
5381
- #: classes/helpers/FrmAppHelper.php:2376
5382
  msgid "Chinese Traditional"
5383
  msgstr ""
5384
 
5385
- #: classes/helpers/FrmAppHelper.php:2377
5386
  msgid "Croatian"
5387
  msgstr ""
5388
 
5389
- #: classes/helpers/FrmAppHelper.php:2378
5390
  msgid "Czech"
5391
  msgstr ""
5392
 
5393
- #: classes/helpers/FrmAppHelper.php:2379
5394
  msgid "Danish"
5395
  msgstr ""
5396
 
5397
- #: classes/helpers/FrmAppHelper.php:2380
5398
  msgid "Dutch"
5399
  msgstr ""
5400
 
5401
- #: classes/helpers/FrmAppHelper.php:2381
5402
  msgid "English/UK"
5403
  msgstr ""
5404
 
5405
- #: classes/helpers/FrmAppHelper.php:2382
5406
  msgid "Esperanto"
5407
  msgstr ""
5408
 
5409
- #: classes/helpers/FrmAppHelper.php:2383
5410
  msgid "Estonian"
5411
  msgstr ""
5412
 
5413
- #: classes/helpers/FrmAppHelper.php:2384
5414
  msgid "Faroese"
5415
  msgstr ""
5416
 
5417
- #: classes/helpers/FrmAppHelper.php:2385
5418
  msgid "Farsi/Persian"
5419
  msgstr ""
5420
 
5421
- #: classes/helpers/FrmAppHelper.php:2386
5422
  msgid "Filipino"
5423
  msgstr ""
5424
 
5425
- #: classes/helpers/FrmAppHelper.php:2387
5426
  msgid "Finnish"
5427
  msgstr ""
5428
 
5429
- #: classes/helpers/FrmAppHelper.php:2388
5430
  msgid "French"
5431
  msgstr ""
5432
 
5433
- #: classes/helpers/FrmAppHelper.php:2389
5434
  msgid "French/Canadian"
5435
  msgstr ""
5436
 
5437
- #: classes/helpers/FrmAppHelper.php:2390
5438
  msgid "French/Swiss"
5439
  msgstr ""
5440
 
5441
- #: classes/helpers/FrmAppHelper.php:2391
5442
  msgid "German"
5443
  msgstr ""
5444
 
5445
- #: classes/helpers/FrmAppHelper.php:2392
5446
  msgid "German/Austria"
5447
  msgstr ""
5448
 
5449
- #: classes/helpers/FrmAppHelper.php:2393
5450
  msgid "German/Switzerland"
5451
  msgstr ""
5452
 
5453
- #: classes/helpers/FrmAppHelper.php:2394
5454
  msgid "Greek"
5455
  msgstr ""
5456
 
5457
- #: classes/helpers/FrmAppHelper.php:2395
5458
- #: classes/helpers/FrmAppHelper.php:2396
5459
  msgid "Hebrew"
5460
  msgstr ""
5461
 
5462
- #: classes/helpers/FrmAppHelper.php:2397
5463
  msgid "Hindi"
5464
  msgstr ""
5465
 
5466
- #: classes/helpers/FrmAppHelper.php:2398
5467
  msgid "Hungarian"
5468
  msgstr ""
5469
 
5470
- #: classes/helpers/FrmAppHelper.php:2399
5471
  msgid "Icelandic"
5472
  msgstr ""
5473
 
5474
- #: classes/helpers/FrmAppHelper.php:2400
5475
  msgid "Indonesian"
5476
  msgstr ""
5477
 
5478
- #: classes/helpers/FrmAppHelper.php:2401
5479
  msgid "Italian"
5480
  msgstr ""
5481
 
5482
- #: classes/helpers/FrmAppHelper.php:2402
5483
  msgid "Japanese"
5484
  msgstr ""
5485
 
5486
- #: classes/helpers/FrmAppHelper.php:2403
5487
  msgid "Korean"
5488
  msgstr ""
5489
 
5490
- #: classes/helpers/FrmAppHelper.php:2404
5491
  msgid "Latvian"
5492
  msgstr ""
5493
 
5494
- #: classes/helpers/FrmAppHelper.php:2405
5495
  msgid "Lithuanian"
5496
  msgstr ""
5497
 
5498
- #: classes/helpers/FrmAppHelper.php:2406
5499
  msgid "Malaysian"
5500
  msgstr ""
5501
 
5502
- #: classes/helpers/FrmAppHelper.php:2407
5503
  msgid "Norwegian"
5504
  msgstr ""
5505
 
5506
- #: classes/helpers/FrmAppHelper.php:2408
5507
  msgid "Polish"
5508
  msgstr ""
5509
 
5510
- #: classes/helpers/FrmAppHelper.php:2409
5511
  msgid "Portuguese"
5512
  msgstr ""
5513
 
5514
- #: classes/helpers/FrmAppHelper.php:2410
5515
  msgid "Portuguese/Brazilian"
5516
  msgstr ""
5517
 
5518
- #: classes/helpers/FrmAppHelper.php:2411
5519
  msgid "Portuguese/Portugal"
5520
  msgstr ""
5521
 
5522
- #: classes/helpers/FrmAppHelper.php:2412
5523
  msgid "Romanian"
5524
  msgstr ""
5525
 
5526
- #: classes/helpers/FrmAppHelper.php:2413
5527
  msgid "Russian"
5528
  msgstr ""
5529
 
5530
- #: classes/helpers/FrmAppHelper.php:2414
5531
- #: classes/helpers/FrmAppHelper.php:2415
5532
  msgid "Serbian"
5533
  msgstr ""
5534
 
5535
- #: classes/helpers/FrmAppHelper.php:2416
5536
  msgid "Slovak"
5537
  msgstr ""
5538
 
5539
- #: classes/helpers/FrmAppHelper.php:2417
5540
  msgid "Slovenian"
5541
  msgstr ""
5542
 
5543
- #: classes/helpers/FrmAppHelper.php:2418
5544
  msgid "Spanish"
5545
  msgstr ""
5546
 
5547
- #: classes/helpers/FrmAppHelper.php:2419
5548
  msgid "Spanish/Latin America"
5549
  msgstr ""
5550
 
5551
- #: classes/helpers/FrmAppHelper.php:2420
5552
  msgid "Swedish"
5553
  msgstr ""
5554
 
5555
- #: classes/helpers/FrmAppHelper.php:2421
5556
  msgid "Tamil"
5557
  msgstr ""
5558
 
5559
- #: classes/helpers/FrmAppHelper.php:2422
5560
  msgid "Thai"
5561
  msgstr ""
5562
 
5563
- #: classes/helpers/FrmAppHelper.php:2423
5564
- #: classes/helpers/FrmAppHelper.php:2424
5565
  msgid "Turkish"
5566
  msgstr ""
5567
 
5568
- #: classes/helpers/FrmAppHelper.php:2425
5569
  msgid "Ukranian"
5570
  msgstr ""
5571
 
5572
- #: classes/helpers/FrmAppHelper.php:2426
5573
  msgid "Vietnamese"
5574
  msgstr ""
5575
 
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.05.01\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: 2020-06-11T20:11:42+02: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"
404
  msgstr ""
405
 
406
  #. translators: %s: User name, %2$d: number of entries
407
+ #: classes/models/FrmReviews.php:105
408
  msgid "Congratulations%1$s! You have collected %2$d form submissions."
409
  msgstr ""
410
 
411
+ #: classes/models/FrmReviews.php:122
412
  msgid "If you are enjoying Formidable, could you do me a BIG favor and give us a review to help me grow my little business and boost our motivation?"
413
  msgstr ""
414
 
415
+ #: classes/models/FrmReviews.php:124
416
  #: classes/views/shared/review.php:18
417
  msgid "Founder and Lead Developer of Formidable Forms"
418
  msgstr ""
419
 
420
+ #: classes/models/FrmReviews.php:127
421
  #: classes/views/shared/review.php:24
422
  msgid "Ok, you deserve it"
423
  msgstr ""
640
  msgstr ""
641
 
642
  #: classes/controllers/FrmAddonsController.php:484
643
+ #: classes/helpers/FrmAppHelper.php:2362
644
  msgid "Active"
645
  msgstr ""
646
 
660
  msgid "Your plugin has been activated. Please reload the page to see more options."
661
  msgstr ""
662
 
663
+ #: classes/controllers/FrmAppController.php:146
664
  msgid "Build"
665
  msgstr ""
666
 
667
+ #: classes/controllers/FrmAppController.php:153
668
  #: classes/views/frm-forms/settings.php:8
669
  #: classes/views/frm-settings/form.php:9
670
  #: classes/helpers/FrmFormsListHelper.php:304
671
  msgid "Settings"
672
  msgstr ""
673
 
674
+ #: classes/controllers/FrmAppController.php:160
675
  #: classes/controllers/FrmXMLController.php:133
676
  #: classes/controllers/FrmFormsController.php:729
677
  #: classes/controllers/FrmEntriesController.php:8
678
+ #: classes/controllers/FrmEntriesController.php:92
679
  #: classes/views/xml/import_form.php:116
680
  msgid "Entries"
681
  msgstr ""
682
 
683
+ #: classes/controllers/FrmAppController.php:171
684
+ #: classes/controllers/FrmAppController.php:177
685
  msgid "Views"
686
  msgstr ""
687
 
688
+ #: classes/controllers/FrmAppController.php:183
689
+ #: classes/controllers/FrmAppController.php:189
690
  msgid "Reports"
691
  msgstr ""
692
 
693
+ #: classes/controllers/FrmAppController.php:205
694
  msgid "Build a Form"
695
  msgstr ""
696
 
854
  msgid "Inbox"
855
  msgstr ""
856
 
857
+ #: classes/controllers/FrmInboxController.php:77
858
  msgid "Help Formidable improve with usage tracking"
859
  msgstr ""
860
 
924
  #: classes/views/addons/list.php:75
925
  #: classes/views/shared/upgrade_overlay.php:27
926
  #: classes/helpers/FrmFormMigratorsHelper.php:130
927
+ #: classes/helpers/FrmAppHelper.php:2361
928
  msgid "Install"
929
  msgstr ""
930
 
1113
  msgstr ""
1114
 
1115
  #: classes/controllers/FrmFormsController.php:630
1116
+ #: classes/controllers/FrmEntriesController.php:76
1117
  #: classes/views/xml/import_form.php:147
1118
  #: classes/widgets/FrmShowForm.php:56
1119
  msgid "Form"
1258
  msgstr ""
1259
 
1260
  #: classes/controllers/FrmFormsController.php:1182
1261
+ #: classes/controllers/FrmEntriesController.php:71
1262
  #: classes/views/frm-entries/sidebar-shared.php:52
1263
  #: classes/views/frm-entries/form.php:52
1264
  msgid "Entry Key"
1377
  msgid "%s form actions"
1378
  msgstr ""
1379
 
1380
+ #: classes/controllers/FrmEntriesController.php:77
1381
  msgid "Entry Name"
1382
  msgstr ""
1383
 
1384
+ #: classes/controllers/FrmEntriesController.php:78
1385
  #: classes/helpers/FrmCSVExportHelper.php:150
1386
  msgid "Created By"
1387
  msgstr ""
1388
 
1389
+ #: classes/controllers/FrmEntriesController.php:81
1390
  msgid "Entry creation date"
1391
  msgstr ""
1392
 
1393
+ #: classes/controllers/FrmEntriesController.php:82
1394
  msgid "Entry update date"
1395
  msgstr ""
1396
 
1397
+ #: classes/controllers/FrmEntriesController.php:388
1398
  msgid "Your import is complete"
1399
  msgstr ""
1400
 
1401
  #. translators: %1$s: Time string
1402
+ #: classes/controllers/FrmEntriesController.php:400
1403
  msgid "This form is in the trash and is scheduled to be deleted permanently in %s along with any entries."
1404
  msgstr ""
1405
 
1406
+ #: classes/controllers/FrmEntriesController.php:419
1407
  msgid "You are trying to view an entry that does not exist."
1408
  msgstr ""
1409
 
1410
+ #: classes/controllers/FrmEntriesController.php:447
1411
  msgid "Entry was Successfully Deleted"
1412
  msgstr ""
1413
 
1501
  #: classes/views/frm-forms/new-form-overlay.php:31
1502
  #: classes/views/shared/confirm-overlay.php:14
1503
  #: classes/views/shared/admin-header.php:42
1504
+ #: classes/helpers/FrmAppHelper.php:2322
1505
  msgid "Cancel"
1506
  msgstr ""
1507
 
1513
  #: classes/views/shared/mb_adv_info.php:35
1514
  #: classes/views/shared/mb_adv_info.php:178
1515
  #: classes/views/frm-entries/list.php:42
1516
+ #: classes/helpers/FrmAppHelper.php:901
1517
  msgid "Search"
1518
  msgstr ""
1519
 
1699
  msgstr ""
1700
 
1701
  #: classes/views/frm-forms/settings-advanced.php:93
1702
+ #: classes/helpers/FrmAppHelper.php:1026
1703
  msgid "Select a Page"
1704
  msgstr ""
1705
 
2025
 
2026
  #: classes/views/shared/confirm-overlay.php:10
2027
  #: classes/views/shared/info-overlay.php:10
2028
+ #: classes/helpers/FrmAppHelper.php:2329
2029
  msgid "Are you sure?"
2030
  msgstr ""
2031
 
2127
 
2128
  #: classes/views/shared/mb_adv_info.php:90
2129
  #: classes/helpers/FrmCSVExportHelper.php:154
2130
+ #: classes/helpers/FrmAppHelper.php:2301
2131
  msgid "ID"
2132
  msgstr ""
2133
 
2137
 
2138
  #: classes/views/shared/mb_adv_info.php:108
2139
  #: classes/views/shared/mb_adv_info.php:122
2140
+ #: classes/helpers/FrmAppHelper.php:2363
2141
  msgid "Select a Field"
2142
  msgstr ""
2143
 
2748
  msgstr ""
2749
 
2750
  #: classes/views/frm-fields/back-end/settings.php:265
2751
+ #: classes/helpers/FrmAppHelper.php:2323
2752
  msgid "Default"
2753
  msgstr ""
2754
 
3435
  msgstr ""
3436
 
3437
  #: classes/helpers/FrmFormsListHelper.php:114
3438
+ #: classes/helpers/FrmAppHelper.php:886
3439
  msgid "Add New"
3440
  msgstr ""
3441
 
3487
  msgstr ""
3488
 
3489
  #: classes/helpers/FrmFieldsHelper.php:286
3490
+ #: classes/helpers/FrmAppHelper.php:2334
3491
  msgid "The entered values do not match"
3492
  msgstr ""
3493
 
3498
 
3499
  #: classes/helpers/FrmFieldsHelper.php:456
3500
  #: classes/helpers/FrmFieldsHelper.php:457
3501
+ #: classes/helpers/FrmAppHelper.php:2338
3502
  msgid "New Option"
3503
  msgstr ""
3504
 
4698
  msgstr ""
4699
 
4700
  #: classes/helpers/FrmListHelper.php:257
4701
+ #: classes/helpers/FrmAppHelper.php:2364
4702
  msgid "No items found."
4703
  msgstr ""
4704
 
4970
  msgstr ""
4971
 
4972
  #: classes/helpers/FrmFormsHelper.php:1453
4973
+ #: classes/helpers/FrmAppHelper.php:2358
4974
  msgid "See the list of reserved words in WordPress."
4975
  msgstr ""
4976
 
5020
  msgid "Parent ID"
5021
  msgstr ""
5022
 
5023
+ #: classes/helpers/FrmAppHelper.php:1157
5024
  msgid "View Forms"
5025
  msgstr ""
5026
 
5027
+ #: classes/helpers/FrmAppHelper.php:1158
5028
  msgid "Add and Edit Forms"
5029
  msgstr ""
5030
 
5031
+ #: classes/helpers/FrmAppHelper.php:1159
5032
  msgid "Delete Forms"
5033
  msgstr ""
5034
 
5035
+ #: classes/helpers/FrmAppHelper.php:1160
5036
  msgid "Access this Settings Page"
5037
  msgstr ""
5038
 
5039
+ #: classes/helpers/FrmAppHelper.php:1161
5040
  msgid "View Entries from Admin Area"
5041
  msgstr ""
5042
 
5043
+ #: classes/helpers/FrmAppHelper.php:1162
5044
  msgid "Delete Entries from Admin Area"
5045
  msgstr ""
5046
 
5047
+ #: classes/helpers/FrmAppHelper.php:1169
5048
  msgid "Add Entries from Admin Area"
5049
  msgstr ""
5050
 
5051
+ #: classes/helpers/FrmAppHelper.php:1170
5052
  msgid "Edit Entries from Admin Area"
5053
  msgstr ""
5054
 
5055
+ #: classes/helpers/FrmAppHelper.php:1171
5056
  msgid "View Reports"
5057
  msgstr ""
5058
 
5059
+ #: classes/helpers/FrmAppHelper.php:1172
5060
  msgid "Add/Edit Views"
5061
  msgstr ""
5062
 
5063
+ #: classes/helpers/FrmAppHelper.php:1794
5064
  msgid "at"
5065
  msgstr ""
5066
 
5067
+ #: classes/helpers/FrmAppHelper.php:1938
 
 
 
 
 
5068
  msgid "year"
5069
  msgstr ""
5070
 
5071
+ #: classes/helpers/FrmAppHelper.php:1939
5072
  msgid "years"
5073
  msgstr ""
5074
 
5075
+ #: classes/helpers/FrmAppHelper.php:1943
5076
  msgid "month"
5077
  msgstr ""
5078
 
5079
+ #: classes/helpers/FrmAppHelper.php:1944
5080
  msgid "months"
5081
  msgstr ""
5082
 
5083
+ #: classes/helpers/FrmAppHelper.php:1948
5084
  msgid "week"
5085
  msgstr ""
5086
 
5087
+ #: classes/helpers/FrmAppHelper.php:1949
5088
  msgid "weeks"
5089
  msgstr ""
5090
 
5091
+ #: classes/helpers/FrmAppHelper.php:1953
5092
  msgid "day"
5093
  msgstr ""
5094
 
5095
+ #: classes/helpers/FrmAppHelper.php:1954
5096
  msgid "days"
5097
  msgstr ""
5098
 
5099
+ #: classes/helpers/FrmAppHelper.php:1958
5100
  msgid "hour"
5101
  msgstr ""
5102
 
5103
+ #: classes/helpers/FrmAppHelper.php:1959
5104
  msgid "hours"
5105
  msgstr ""
5106
 
5107
+ #: classes/helpers/FrmAppHelper.php:1963
5108
  msgid "minute"
5109
  msgstr ""
5110
 
5111
+ #: classes/helpers/FrmAppHelper.php:1964
5112
  msgid "minutes"
5113
  msgstr ""
5114
 
5115
+ #: classes/helpers/FrmAppHelper.php:1968
5116
  msgid "second"
5117
  msgstr ""
5118
 
5119
+ #: classes/helpers/FrmAppHelper.php:1969
5120
+ msgid "seconds"
5121
+ msgstr ""
5122
+
5123
+ #: classes/helpers/FrmAppHelper.php:2063
5124
  msgid "Give this action a label for easy reference."
5125
  msgstr ""
5126
 
5127
+ #: classes/helpers/FrmAppHelper.php:2064
5128
  msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
5129
  msgstr ""
5130
 
5131
+ #: classes/helpers/FrmAppHelper.php:2065
5132
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
5133
  msgstr ""
5134
 
5135
+ #: classes/helpers/FrmAppHelper.php:2066
5136
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
5137
  msgstr ""
5138
 
5139
+ #: classes/helpers/FrmAppHelper.php:2067
5140
  msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
5141
  msgstr ""
5142
 
5143
+ #: classes/helpers/FrmAppHelper.php:2068
5144
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
5145
  msgstr ""
5146
 
5147
  #. translators: %1$s: Form name, %2$s: Date
5148
+ #: classes/helpers/FrmAppHelper.php:2070
5149
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
5150
  msgstr ""
5151
 
5152
+ #: classes/helpers/FrmAppHelper.php:2264
5153
+ #: classes/helpers/FrmAppHelper.php:2343
5154
  msgid "Please wait while your site updates."
5155
  msgstr ""
5156
 
5157
+ #: classes/helpers/FrmAppHelper.php:2265
5158
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
5159
  msgstr ""
5160
 
5161
+ #: classes/helpers/FrmAppHelper.php:2268
5162
+ #: classes/helpers/FrmAppHelper.php:2297
5163
  msgid "Loading&hellip;"
5164
  msgstr ""
5165
 
5166
+ #: classes/helpers/FrmAppHelper.php:2298
5167
  msgid "Remove"
5168
  msgstr ""
5169
 
5170
+ #: classes/helpers/FrmAppHelper.php:2302
5171
  msgid "No results match"
5172
  msgstr ""
5173
 
5174
+ #: classes/helpers/FrmAppHelper.php:2303
5175
  msgid "That file looks like Spam."
5176
  msgstr ""
5177
 
5178
+ #: classes/helpers/FrmAppHelper.php:2304
5179
  msgid "There is an error in the calculation in the field with key"
5180
  msgstr ""
5181
 
5182
+ #: classes/helpers/FrmAppHelper.php:2305
5183
  msgid "Please complete the preceding required fields before uploading a file."
5184
  msgstr ""
5185
 
5186
+ #: classes/helpers/FrmAppHelper.php:2316
5187
  msgid "(Click to add description)"
5188
  msgstr ""
5189
 
5190
+ #: classes/helpers/FrmAppHelper.php:2317
5191
  msgid "(Blank)"
5192
  msgstr ""
5193
 
5194
+ #: classes/helpers/FrmAppHelper.php:2318
5195
  msgid "(no label)"
5196
  msgstr ""
5197
 
5198
+ #: classes/helpers/FrmAppHelper.php:2319
5199
  msgid "Saving"
5200
  msgstr ""
5201
 
5202
+ #: classes/helpers/FrmAppHelper.php:2320
5203
  msgid "Saved"
5204
  msgstr ""
5205
 
5206
+ #: classes/helpers/FrmAppHelper.php:2321
5207
  msgid "OK"
5208
  msgstr ""
5209
 
5210
+ #: classes/helpers/FrmAppHelper.php:2324
5211
  msgid "Clear default value when typing"
5212
  msgstr ""
5213
 
5214
+ #: classes/helpers/FrmAppHelper.php:2325
5215
  msgid "Do not clear default value when typing"
5216
  msgstr ""
5217
 
5218
+ #: classes/helpers/FrmAppHelper.php:2326
5219
  msgid "Default value will pass form validation"
5220
  msgstr ""
5221
 
5222
+ #: classes/helpers/FrmAppHelper.php:2327
5223
  msgid "Default value will NOT pass form validation"
5224
  msgstr ""
5225
 
5226
+ #: classes/helpers/FrmAppHelper.php:2328
5227
  msgid "Heads up"
5228
  msgstr ""
5229
 
5230
+ #: classes/helpers/FrmAppHelper.php:2330
5231
  msgid "Are you sure you want to delete this field and all data associated with it?"
5232
  msgstr ""
5233
 
5234
+ #: classes/helpers/FrmAppHelper.php:2331
5235
  msgid "All fields inside this Section will be deleted along with their data. Are you sure you want to delete this group of fields?"
5236
  msgstr ""
5237
 
5238
+ #: classes/helpers/FrmAppHelper.php:2332
5239
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
5240
  msgstr ""
5241
 
5242
+ #: classes/helpers/FrmAppHelper.php:2335
5243
  msgid "Enter Email"
5244
  msgstr ""
5245
 
5246
+ #: classes/helpers/FrmAppHelper.php:2336
5247
  msgid "Confirm Email"
5248
  msgstr ""
5249
 
5250
+ #: classes/helpers/FrmAppHelper.php:2337
5251
  msgid "Conditional content here"
5252
  msgstr ""
5253
 
5254
+ #: classes/helpers/FrmAppHelper.php:2339
5255
  msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
5256
  msgstr ""
5257
 
5258
+ #: classes/helpers/FrmAppHelper.php:2340
5259
  msgid "Enter Password"
5260
  msgstr ""
5261
 
5262
+ #: classes/helpers/FrmAppHelper.php:2341
5263
  msgid "Confirm Password"
5264
  msgstr ""
5265
 
5266
+ #: classes/helpers/FrmAppHelper.php:2342
5267
  msgid "Import Complete"
5268
  msgstr ""
5269
 
5270
+ #: classes/helpers/FrmAppHelper.php:2344
5271
  msgid "Warning: There is no way to retrieve unsaved entries."
5272
  msgstr ""
5273
 
5274
+ #: classes/helpers/FrmAppHelper.php:2345
5275
  msgid "Private"
5276
  msgstr ""
5277
 
5278
+ #: classes/helpers/FrmAppHelper.php:2348
5279
  msgid "No new licenses were found"
5280
  msgstr ""
5281
 
5282
+ #: classes/helpers/FrmAppHelper.php:2349
5283
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
5284
  msgstr ""
5285
 
5286
+ #: classes/helpers/FrmAppHelper.php:2350
5287
  msgid "This calculation may have shortcodes that work in Views but not forms."
5288
  msgstr ""
5289
 
5290
+ #: classes/helpers/FrmAppHelper.php:2351
5291
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
5292
  msgstr ""
5293
 
5294
+ #: classes/helpers/FrmAppHelper.php:2352
5295
  msgid "This form action is limited to one per form. Please edit the existing form action."
5296
  msgstr ""
5297
 
5298
  #. Translators: %s is the name of a Detail Page Slug that is a reserved word.
5299
+ #: classes/helpers/FrmAppHelper.php:2355
5300
  msgid "The Detail Page Slug \"%s\" is reserved by WordPress. This may cause problems. Is this intentional?"
5301
  msgstr ""
5302
 
5303
  #. Translators: %s is the name of a parameter that is a reserved word. More than one word could be listed here, though that would not be common.
5304
+ #: classes/helpers/FrmAppHelper.php:2357
5305
  msgid "The parameter \"%s\" is reserved by WordPress. This may cause problems when included in the URL. Is this intentional? "
5306
  msgstr ""
5307
 
5308
+ #: classes/helpers/FrmAppHelper.php:2359
5309
  msgid "Please enter a Repeat Limit that is greater than 1."
5310
  msgstr ""
5311
 
5312
+ #: classes/helpers/FrmAppHelper.php:2360
5313
  msgid "Please select a limit between 0 and 200."
5314
  msgstr ""
5315
 
5316
+ #: classes/helpers/FrmAppHelper.php:2391
5317
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
5318
  msgstr ""
5319
 
5320
+ #: classes/helpers/FrmAppHelper.php:2418
5321
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
5322
  msgstr ""
5323
 
5324
+ #: classes/helpers/FrmAppHelper.php:2446
5325
  msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
5326
  msgstr ""
5327
 
5328
+ #: classes/helpers/FrmAppHelper.php:2452
5329
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
5330
  msgstr ""
5331
 
5332
+ #: classes/helpers/FrmAppHelper.php:2466
5333
  msgid "English"
5334
  msgstr ""
5335
 
5336
+ #: classes/helpers/FrmAppHelper.php:2467
5337
  msgid "Afrikaans"
5338
  msgstr ""
5339
 
5340
+ #: classes/helpers/FrmAppHelper.php:2468
5341
  msgid "Albanian"
5342
  msgstr ""
5343
 
5344
+ #: classes/helpers/FrmAppHelper.php:2469
5345
  msgid "Arabic"
5346
  msgstr ""
5347
 
5348
+ #: classes/helpers/FrmAppHelper.php:2470
5349
  msgid "Armenian"
5350
  msgstr ""
5351
 
5352
+ #: classes/helpers/FrmAppHelper.php:2471
5353
  msgid "Azerbaijani"
5354
  msgstr ""
5355
 
5356
+ #: classes/helpers/FrmAppHelper.php:2472
5357
  msgid "Basque"
5358
  msgstr ""
5359
 
5360
+ #: classes/helpers/FrmAppHelper.php:2473
5361
  msgid "Bosnian"
5362
  msgstr ""
5363
 
5364
+ #: classes/helpers/FrmAppHelper.php:2474
5365
  msgid "Bulgarian"
5366
  msgstr ""
5367
 
5368
+ #: classes/helpers/FrmAppHelper.php:2475
5369
  msgid "Catalan"
5370
  msgstr ""
5371
 
5372
+ #: classes/helpers/FrmAppHelper.php:2476
5373
  msgid "Chinese Hong Kong"
5374
  msgstr ""
5375
 
5376
+ #: classes/helpers/FrmAppHelper.php:2477
5377
  msgid "Chinese Simplified"
5378
  msgstr ""
5379
 
5380
+ #: classes/helpers/FrmAppHelper.php:2478
5381
  msgid "Chinese Traditional"
5382
  msgstr ""
5383
 
5384
+ #: classes/helpers/FrmAppHelper.php:2479
5385
  msgid "Croatian"
5386
  msgstr ""
5387
 
5388
+ #: classes/helpers/FrmAppHelper.php:2480
5389
  msgid "Czech"
5390
  msgstr ""
5391
 
5392
+ #: classes/helpers/FrmAppHelper.php:2481
5393
  msgid "Danish"
5394
  msgstr ""
5395
 
5396
+ #: classes/helpers/FrmAppHelper.php:2482
5397
  msgid "Dutch"
5398
  msgstr ""
5399
 
5400
+ #: classes/helpers/FrmAppHelper.php:2483
5401
  msgid "English/UK"
5402
  msgstr ""
5403
 
5404
+ #: classes/helpers/FrmAppHelper.php:2484
5405
  msgid "Esperanto"
5406
  msgstr ""
5407
 
5408
+ #: classes/helpers/FrmAppHelper.php:2485
5409
  msgid "Estonian"
5410
  msgstr ""
5411
 
5412
+ #: classes/helpers/FrmAppHelper.php:2486
5413
  msgid "Faroese"
5414
  msgstr ""
5415
 
5416
+ #: classes/helpers/FrmAppHelper.php:2487
5417
  msgid "Farsi/Persian"
5418
  msgstr ""
5419
 
5420
+ #: classes/helpers/FrmAppHelper.php:2488
5421
  msgid "Filipino"
5422
  msgstr ""
5423
 
5424
+ #: classes/helpers/FrmAppHelper.php:2489
5425
  msgid "Finnish"
5426
  msgstr ""
5427
 
5428
+ #: classes/helpers/FrmAppHelper.php:2490
5429
  msgid "French"
5430
  msgstr ""
5431
 
5432
+ #: classes/helpers/FrmAppHelper.php:2491
5433
  msgid "French/Canadian"
5434
  msgstr ""
5435
 
5436
+ #: classes/helpers/FrmAppHelper.php:2492
5437
  msgid "French/Swiss"
5438
  msgstr ""
5439
 
5440
+ #: classes/helpers/FrmAppHelper.php:2493
5441
  msgid "German"
5442
  msgstr ""
5443
 
5444
+ #: classes/helpers/FrmAppHelper.php:2494
5445
  msgid "German/Austria"
5446
  msgstr ""
5447
 
5448
+ #: classes/helpers/FrmAppHelper.php:2495
5449
  msgid "German/Switzerland"
5450
  msgstr ""
5451
 
5452
+ #: classes/helpers/FrmAppHelper.php:2496
5453
  msgid "Greek"
5454
  msgstr ""
5455
 
5456
+ #: classes/helpers/FrmAppHelper.php:2497
5457
+ #: classes/helpers/FrmAppHelper.php:2498
5458
  msgid "Hebrew"
5459
  msgstr ""
5460
 
5461
+ #: classes/helpers/FrmAppHelper.php:2499
5462
  msgid "Hindi"
5463
  msgstr ""
5464
 
5465
+ #: classes/helpers/FrmAppHelper.php:2500
5466
  msgid "Hungarian"
5467
  msgstr ""
5468
 
5469
+ #: classes/helpers/FrmAppHelper.php:2501
5470
  msgid "Icelandic"
5471
  msgstr ""
5472
 
5473
+ #: classes/helpers/FrmAppHelper.php:2502
5474
  msgid "Indonesian"
5475
  msgstr ""
5476
 
5477
+ #: classes/helpers/FrmAppHelper.php:2503
5478
  msgid "Italian"
5479
  msgstr ""
5480
 
5481
+ #: classes/helpers/FrmAppHelper.php:2504
5482
  msgid "Japanese"
5483
  msgstr ""
5484
 
5485
+ #: classes/helpers/FrmAppHelper.php:2505
5486
  msgid "Korean"
5487
  msgstr ""
5488
 
5489
+ #: classes/helpers/FrmAppHelper.php:2506
5490
  msgid "Latvian"
5491
  msgstr ""
5492
 
5493
+ #: classes/helpers/FrmAppHelper.php:2507
5494
  msgid "Lithuanian"
5495
  msgstr ""
5496
 
5497
+ #: classes/helpers/FrmAppHelper.php:2508
5498
  msgid "Malaysian"
5499
  msgstr ""
5500
 
5501
+ #: classes/helpers/FrmAppHelper.php:2509
5502
  msgid "Norwegian"
5503
  msgstr ""
5504
 
5505
+ #: classes/helpers/FrmAppHelper.php:2510
5506
  msgid "Polish"
5507
  msgstr ""
5508
 
5509
+ #: classes/helpers/FrmAppHelper.php:2511
5510
  msgid "Portuguese"
5511
  msgstr ""
5512
 
5513
+ #: classes/helpers/FrmAppHelper.php:2512
5514
  msgid "Portuguese/Brazilian"
5515
  msgstr ""
5516
 
5517
+ #: classes/helpers/FrmAppHelper.php:2513
5518
  msgid "Portuguese/Portugal"
5519
  msgstr ""
5520
 
5521
+ #: classes/helpers/FrmAppHelper.php:2514
5522
  msgid "Romanian"
5523
  msgstr ""
5524
 
5525
+ #: classes/helpers/FrmAppHelper.php:2515
5526
  msgid "Russian"
5527
  msgstr ""
5528
 
5529
+ #: classes/helpers/FrmAppHelper.php:2516
5530
+ #: classes/helpers/FrmAppHelper.php:2517
5531
  msgid "Serbian"
5532
  msgstr ""
5533
 
5534
+ #: classes/helpers/FrmAppHelper.php:2518
5535
  msgid "Slovak"
5536
  msgstr ""
5537
 
5538
+ #: classes/helpers/FrmAppHelper.php:2519
5539
  msgid "Slovenian"
5540
  msgstr ""
5541
 
5542
+ #: classes/helpers/FrmAppHelper.php:2520
5543
  msgid "Spanish"
5544
  msgstr ""
5545
 
5546
+ #: classes/helpers/FrmAppHelper.php:2521
5547
  msgid "Spanish/Latin America"
5548
  msgstr ""
5549
 
5550
+ #: classes/helpers/FrmAppHelper.php:2522
5551
  msgid "Swedish"
5552
  msgstr ""
5553
 
5554
+ #: classes/helpers/FrmAppHelper.php:2523
5555
  msgid "Tamil"
5556
  msgstr ""
5557
 
5558
+ #: classes/helpers/FrmAppHelper.php:2524
5559
  msgid "Thai"
5560
  msgstr ""
5561
 
5562
+ #: classes/helpers/FrmAppHelper.php:2525
5563
+ #: classes/helpers/FrmAppHelper.php:2526
5564
  msgid "Turkish"
5565
  msgstr ""
5566
 
5567
+ #: classes/helpers/FrmAppHelper.php:2527
5568
  msgid "Ukranian"
5569
  msgstr ""
5570
 
5571
+ #: classes/helpers/FrmAppHelper.php:2528
5572
  msgid "Vietnamese"
5573
  msgstr ""
5574
 
readme.txt CHANGED
@@ -1,115 +1,72 @@
1
  === Formidable Form Builder - Contact Form, Survey & Quiz Forms Plugin for WordPress ===
2
  Plugin Name: Formidable Forms - Contact Form, Survey & Quiz Forms Plugin for WordPress
3
  Contributors: formidableforms, sswells, srwells
4
- Tags: forms, contact form, form builder, survey, form maker, form creator, paypal form, registration form, quiz, quiz form, order form, paypal, paypal form, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, mortgage calculator, calculator form, calculator, price calculator, quote form, contact button, contact me, custom contact form, form manager, form, forms builder, forms creator, captcha, recaptcha, Akismet, email form, web form, payment form, survey form, donation form, email submit form, message form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor
5
  Requires at least: 4.7
6
  Tested up to: 5.4
7
  Requires PHP: 5.6
8
- Stable tag: 4.05
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
11
 
12
  == Description ==
 
13
  == The Most Powerful WordPress form builder plugin on the market ==
14
- 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 a contact form, survey, quiz, registration form, payment form, purchase, email marketing, or calculator form, and just about anything else you can imagine.
15
 
16
- 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 a contact form, we believe in allowing our users to push the limits and create complex forms quickly!
17
 
18
- 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).
19
 
20
- On top of that, we have optimized Formidable for speed and maximum server performance. Whether you use Formidable to build a basic contact form on your own site or an advanced form for your client, you can confidently say that it's one of the FASTEST WordPress form builders on the market.
21
 
22
  > <strong>Formidable Forms Pro</strong><br />
23
- > This form builder plugin is the lite version of Formidable Forms that comes with all the features you will ever need. Our premium features include options for you to create an advanced email subscription form, multi-page form, file upload form, or a smart form with conditional logic. You get repeater fields, payment integrations, form templates, form relationships, cascading dropdown fields, calculated fields, front-end form editing, and powerful Formidable Views to display data in web applications, and far more than just a contact form. <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion" rel="friend" title="Formidable">Click here to purchase the most advanced premium WordPress form builder plugin now!</a>
 
24
 
25
- You can start with our pre-built templates or create totally custom forms from scratch all with an easy-to-use drag & drop form builder interface.
26
 
27
  https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
28
 
29
- Let's take a look at all the powerful features that you get with Formidable for making an amazing lead form, survey, poll, subscription form, request a quote form, donation form, registration form, or payment order form.
30
 
31
  == Drag & Drop Form Maker and Advanced Form Builder ==
32
 
33
- The Formidable drag & drop form builder allows you to quickly build unlimited surveys, quizzes, registration forms, and just about any other type of form that you want.
34
-
35
- Our form builder comes with all the powerful form fields that you need to create a solution-focused form, fast!
36
-
37
- * Single line text (for names, phone numbers, addresses, and more)
38
- * Email
39
- * Website/URL
40
- * Paragraph text
41
- * Radio buttons
42
- * Checkboxes
43
- * Dropdown select boxes
44
- * Number
45
- * Phone number
46
- * Hidden fields
47
- * User ID
48
- * HTML block (for Custom HTML)
49
- * Google ReCAPTCHA - Great for preventing spam.
50
-
51
- Here is a list of our advanced premium fields:
52
-
53
- * File Upload
54
- * Rich Text
55
- * Date
56
- * Time
57
- * Scale
58
- * Star Rating - Great for surveys and polls.
59
- * Slider
60
- * Toggle
61
- * Dynamic - Great for creating relationships between entries.
62
- * Lookup - Great for cascading lookups like country, city, state.
63
- * Repeater - Great for registering multiple kids, job history in an application, and much more.
64
- * Section Heading
65
- * Page Break
66
- * Embed Form - Great for reusing the same set of fields in multiple places.
67
- * Password Field - Great for user registration forms.
68
- * Tags
69
- * Address Field
70
- * Summary - Great to review responses before submit.
71
- * Signature - Great for contracts and booking.
72
- * Quiz Score
73
 
74
- Additionally, our Payment fields will help you create an order form, donation form, booking form, or other payment form:
75
-
76
- * Single Item
77
- * Multiple Items
78
- * Checkbox Items
79
- * Dropdown Items
80
- * Product Quantity
81
- * Total (Price Calculation Field)
82
- * Credit Card (Stripe Form or Authorize.net Form)
83
 
84
  == Complete Entry Management for Forms and Surveys ==
85
 
86
- Formidable allows you to view all your form and survey entries right from your WordPress dashboard.
87
-
88
- Once a user submits a form, their response is automatically stored in your WordPress database.
89
 
90
- Formidable is a **100% GDPR-friendly** form generator. You can turn off IP tracking or stop saving submissions entirely. Alternatively, you can add a GDPR checkbox field to your lead forms and payment forms to collect consent.
91
 
92
- Need to import your leads to another service like MailChimp? No problem. **Export leads to a CSV**, open it in Excel, and import anywhere.
93
 
94
  You can also configure unlimited email notifications and autoresponders triggered by form submissions.
95
 
96
- On top of that, you can easily customize the success message the user sees after they submit the form, or redirect them to another page for your more advanced form needs.
97
 
98
  == The Only Form Maker Plugin with an Advanced Form Styler ==
99
 
100
  With our built-in form styler, you can instantly customize the look and feel of your contact form. With just a few clicks, your email form can be transformed to match your website design.
101
 
102
- By default, Formidable applies a single styling template to your WordPress forms. But if you want a custom form style for each individual registration form and sidebar form, you can upgrade to Formidable Forms Pro.
103
 
104
  == Build Smart Surveys with Beautiful Reports ==
105
 
106
  Formidable comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.
107
 
 
 
 
 
108
  The best part is that you can do this all within Formidable without any third-party tools.
109
 
110
  == Quickly Create an Advanced WordPress Registration Form for Any Use Case ==
111
 
112
- Whether you need to create a youth sports team, event, or church retreat registration, Formidable has got you covered. Unlike other form plugins, Formidable comes with a repeater field that allows you to create the most powerful registration forms.
113
 
114
  Then, our marketing integrations and APIs can send the email form and other form data anywhere you want.
115
 
@@ -119,45 +76,23 @@ By now, you probably already realize the theme that Formidable is more than just
119
 
120
  We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create an order form, donation form, or purchase form with our drag & drop form builder.
121
 
122
- You can even use Formidable to create a WooCommerce form with custom fields (more on that later).
123
-
124
- == Grow Your Business with Marketing Integrations ==
125
-
126
- We know that marketing is the key to grow your business. That's why Formidable allows you to connect your WP form, payment form, calculator, or advanced form with the marketing platform of your choice.
127
-
128
- We integrate with popular email marketing services like:
129
-
130
- * MailChimp
131
- * AWeber
132
- * Constant Contact
133
- * GetResponse
134
- * MailPoet
135
- * Active Campaign
136
- * Salesforce
137
- * HubSpot
138
- * Campaign Monitor
139
 
140
- On top of these native integrations, we also integrate with Zapier, so you can quickly route your form data to over 2,000 more services with just a few clicks.
141
-
142
- == Make Data-Driven Web Applications with Formidable Views ==
143
 
144
  Formidable Views are by far the most powerful feature that makes Formidable far more than just a contact form builder plugin. Views allow you to flexibly display any submitted form data on the front-end of your website.
145
 
146
- Our customers use Formidable Views to create data-driven web applications like real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.
147
 
148
  As you can see, Formidable is not your average contact form plugin. It's a true all-in-one WordPress form solution.
149
 
150
- == Increase Your Sales with WooCommerce Product Order Forms ==
151
 
152
  Formidable is the only WordPress form builder plugin that offers extensive integration with WooCommerce orders.
153
 
154
  Our goal is to empower you to build powerful WooCommerce product order forms, so you can increase your store sales.
155
 
156
- You can use Formidable to add a WooCommerce product configurator with custom calculation fields. Then automatically send the order info to the WooCommerce cart with variable pricing options.
157
-
158
- Need your customers to upload a file when they purchase a product? No problem. Simply drag & drop a file upload field into your linked up WooCommerce order form and you're done.
159
-
160
- You can even show submitted values in the WooCommerce purchase receipt emails as well as trigger SMS text messages or marketing integrations when an order is completed.
161
 
162
  == Make Powerful Quiz Forms & Calculators ==
163
 
@@ -169,8 +104,8 @@ More on quizzes later, but here are some example web calculators you can quickly
169
  * <a href="https://formidableforms.com/form-templates/simple-mortgage-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Basic Mortgage Calculator</a>
170
  * <a href="https://formidableforms.com/form-templates/automobile-payment-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Car Payment Calculator</a>
171
  * <a href="https://formidableforms.com/form-templates/nps-survey-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Net Promoter Score (NPS) Survey Calculator</a>
172
- * BMI Calculator and more Health and Fitness Calculators
173
- * User Age Calculator
174
  * Online Quote Calculator
175
  * <a href="https://formidableforms.com/form-templates/nps-survey-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Net Promoter Score (NPS) Survey Calculator</a>
176
  * Finance Calculator
@@ -179,152 +114,103 @@ More on quizzes later, but here are some example web calculators you can quickly
179
 
180
  ... and our powerful calculated fields allow you to build just about any other type of calculator.
181
 
182
- If that wasn't enough, you can also use Formidable to create a quiz, poll, or survey on your WordPress site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.
183
 
184
- Our goal is to go beyond a simple contact form and allow you to create custom form-based solutions without any code :)
185
 
186
  == Create a WordPress User Registration Form, Profile Form, and More ==
187
 
188
- If you run a WordPress membership site, then you need more advanced forms.
189
-
190
- The Formidable Form builder allows you to customize your WordPress user registration form, so you can collect additional data when the user profile is created.
191
 
192
- With our front-end editing, you can also build a custom profile form and allow users to keep their profile updated, or even progressively add to the profile from a set of forms, from the first contact form or lead form to the last payment form.
193
 
194
- Our front-end form editing feature is unique to us, and you will not find any other WordPress form plugin offering such a solution with the level of extendability that we do.
195
-
196
- == Beautiful Graphs and Reports to Help You Analyze and Showcase Data ==
197
-
198
- We believe that data alone does no good if you can't analyze it. That's why we make it easy for you to analyze your survey, quiz, price calculator, and other form data with beautiful graphs and reports.
199
-
200
- You can even showcase form data on the front-end of your website by embedding graphs in your WordPress posts or pages.
201
 
202
  == All the Advanced Form Fields and Features You Need to Grow Your Business ==
203
 
204
- Formidable goes far above and beyond basic contact forms to offer all the advanced form fields and features you need to grow your business.
205
-
206
- This includes things like multi-page forms, save and continue, cascading form fields, powerful conditional logic, partial submissions, invisible spam protection, front-end user post submission, calculated fields, user-tracking, and so much more.
207
 
208
- We're on a mission to offer an all-in-one solution-focused WordPress form plugin, so you don't have to install 5 plugins alongside your form maker to do everything you want.
209
 
210
  == Extend and Customize Your Forms - Developer's Dream Come True ==
211
 
212
- Formidable is the form plugin of choice for smart developers, freelancers, and agencies because it helps them build complex solutions and basic forms quickly and defy the limits imposed by time and knowledge.
213
 
214
- Our goal is to help you build complex websites with low overhead. We believe big projects don't always need big resources.
215
 
216
- That's why we made Formidable the most extendable WordPress form builder plugin on the market.
217
-
218
- You can easily route your contact form data with our powerful API. Formidable Views allow you to display form data anywhere on the front-end, so you can quickly create data-driven web applications.
219
 
220
  On top of that, our hooks and filters allow you to extend Formidable to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.
221
 
222
  == Full Formidable Feature List ==
223
 
224
- 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, your choice :)
225
 
226
- * <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 a contact form or email form to a price calculator or complex online form. Make awesome forms the easy way with a simple WordPress drag and drop form builder. No code required.
227
- * <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.
228
- * <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 a registration form, application, email, calculator, and contact form, and other advanced forms on the fly.
229
- * <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 a job application form (resumes), WordPress User Profile Form (avatars), get a quote, or contact form.
230
  * <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 a smart contact form? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for a smart branching form.
231
- * <a href="https://formidableforms.com/features/cascading-dropdown-lookup-field/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Cascading lookup fields</a>. Change values in other form fields or drill down through options to reveal a final value. Designed for year/make/model fields in auto forms and country/state/city fields. You can even use lookup fields to get a price from a separate product form.
232
  * Datepicker fields with advanced <a href="https://formidableforms.com/features/datepicker-options-for-dates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">datepicker options</a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for email forms, basic online booking, and event registration.
233
- * Setup relationships with Dynamic fields. Populate form fields from other forms and link data between two forms without duplication. These relationships are helpful in a huge number of cases including linking employment applications to a job, a quiz to a class, an event registration to an event, and a sports registration to a team.
234
  * Add password fields with a password strength meter in a WordPress user registration form, profile form, and change password form.
235
- * Collect reviews with star ratings in feedback, recipe ratings, product review, event rating, and customer testimonial forms. Then display and share the ratings in Formidable Views.
236
  * <a href="https://formidableforms.com/features/confirm-email-address-password-wordpress-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Confirmation fields</a>. Double check email addresses or passwords and prevent typos from cannibalizing your leads.
237
  * <a href="https://formidableforms.com/features/conditional-logic-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Conditional logic for smart forms</a>. Show or hide fields based on user selections or user roles. Make complex forms simple and increase conversion rates.
238
  * <a href="https://formidableforms.com/features/email-autoresponders-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Send email notifications & autoresponders</a>. Automatically let clients know you received their message. Then create customized email notifications for multiple recipients and get info from an email form to those who need it.
239
- * Email routing: Conditionally send multiple autoresponder emails and notifications based on values in email forms, contact forms, registration forms, and payment forms.
240
  * Pricing fields for easy eCommerce forms with automatic price calculations. Drop in a product field, quantity, and total and you're good to go.
241
- * <a href="https://formidableforms.com/features/wordpress-calculated-fields-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Calculator forms</a>. Create basic and complex calculations, and even combine text from multiple fields for a mortgage calculator, auto loan calculator, and many other calculators. Even a contact form can benefit from price calculations for easy quotes and price estimates.
242
- * <a href="https://formidableforms.com/features/wordpress-visual-form-styler/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Visual style creator</a>. Our form creator for email forms, calculator forms, and other web forms not only allows you to build contact forms, but also create branded forms that match your site. Change colors, borders, padding and much more without any code.
243
  * <a href="https://formidableforms.com/features/flexible-layouts-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Flexible form layout design</a>. Build mobile responsive forms and advanced layouts with multiple fields in a row by using our CSS layout classes.
244
- * <a href="https://formidableforms.com/features/wordpress-mobile-friendly-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Mobile-friendly, responsive forms</a>. All of our forms are sized automatically for every screen size. Ensure that everyone can see and submit your surveys, calculators, and web forms from any device.
245
  * <a href="https://formidableforms.com/features/user-submitted-posts-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User submitted front-end posts and pages</a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from a post creation form to a page.
246
- * <a href="https://formidableforms.com/features/form-entry-management-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Simple entry management</a>. Flexibly and powerfully display, edit, and delete form entries from anywhere on your site, and specify who has permission to do so. Your logged-in users can fully manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and whatever else you need.
247
  * <a href="https://formidableforms.com/features/front-end-editing-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress front-end editing</a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.
248
- * Logged-in users can <a href="https://formidableforms.com/features/save-and-continue-partial-submissions/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">save and continue partial form submissions</a>. Whether it's a basic contact form or a long multi-paged form, users can save form progress and pick up right where they left off.
249
- * <a href="https://formidableforms.com/features/create-a-graph-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Graphs and charts for data visualization</a>. Display statistics from a survey, poll, quiz, questionnaire, and contact form. Or graph the data in a variety of ways that automatically update as new data is submitted (great for weight tracking over time).
250
  * Permission settings. Limit visibility of specialized forms based on user role.
251
- * Entry limits. Limit survey, quiz, registration form, or directory submissions to only allow one entry per user, IP, or cookie.
252
- * <a href="https://formidableforms.com/features/wordpress-schedule-forms-limit-responses/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form scheduling</a>. Open and close event registration and signup forms on a specific date. Or close registration forms when the seat limit or team size has been reached. Want a form for questions about a planned event that auto closes when the event starts? No problem.
253
- * Conditionally redirect to a custom page after a custom search form, quiz, payment form, support ticket form, or other online form is submitted. Help clients get the answers they are looking for, or show a tailored result based on their form selections and calculated fields.
254
- * We believe that forms should be extendable to meet your needs. So we give you access to <a href="https://formidableforms.com/features/customize-form-html-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">customize the form HTML</a> (like Contact Form 7), but still keep the ease and speed of a drag & drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.
255
  * <a href="https://formidableforms.com/features/importing-exporting-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Import and export forms, form submissions, styles, and views</a>. Quickly move forms, entries, views and styles to another site. Need to export leads from a form to another service? Check.
256
- * <a href="https://formidableforms.com/features/wordpress-form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form templates for instant form building</a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable View templates. Our WordPress form generator makes it FAST to build job application forms, and other online forms.
257
  * Import our <a href="https://formidableforms.com/form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">pre-built form/view templates</a> as a shortcut to a final product. Our growing form template library includes payment forms, calculators, a WooCommerce product creator, and more.
258
- * <a href="https://formidableforms.com/features/wcag-accessible-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WCAG accessible forms with A11Y and ADA compliance</a>. Don't alienate your audience. Ensure your survey, quiz, calculator, lead capture form, and other online forms are compliant and available to anyone. Allow those using screenreaders to successfully use and submit your WordPress form.
259
- * <a href="https://formidableforms.com/features/invisible-spam-protection/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Invisible SPAM protection</a>. Don't waste time sorting through SPAM. Get instant and powerful anti-spam features from honeypot, invisible reCAPTCHA, Akismet, and the WordPress comment blacklist.
260
  * <a href="https://formidableforms.com/features/fill-out-forms-automatically/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Fill out forms automatically</a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill known values like first name, last name, and email address.
261
  * <a href="https://formidableforms.com/features/white-label-form-builder-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">White label forms</a>. Replace the Formidable branding with your own in the admin area. Plus, we never show "powered by" links in your free contact form or other online form.
262
- * <a href="https://formidableforms.com/features/wordpress-user-registration/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress user registration forms</a>. Register WordPress users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow logged in and logged out users to create new subdomains.
263
- * <a href="https://formidableforms.com/features/digital-form-signatures/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Digital signature forms</a>. Eliminate paper forms with a digital signature field in application forms and advanced forms.
264
- * <a href="https://formidableforms.com/features/form-action-automation-scheduling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form action automation</a>. Schedule form email notifications, SMS messages, and webhooks to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a lead form and much more.
265
  * <a href="https://formidableforms.com/features/wordpress-form-api/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms API</a>. Send form entries to other REST APIs and add a set of form webhooks. This includes the option to send form entries from one Formidable site to another.
266
  * <a href="https://formidableforms.com/features/quiz-maker-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Quiz maker forms</a>. Write your quiz form questions, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz grading is automatically done for you with our quiz plugin.
267
- * <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.
268
 
269
  == Payment Forms, Form APIs, and Marketing Integrations ==
270
- In addition to all the features listed above, power up your forms with these integrations.
271
-
272
- = <a href="https://formidableforms.com/features/paypal-wordpress-payments/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">PayPal Payment Forms</a> =
273
- 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 and donation forms.
274
-
275
- = <a href="https://formidableforms.com/features/stripe-payments-for-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Stripe Payment Forms</a> =
276
- 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.
277
-
278
- = <a href="https://formidableforms.com/features/authorize-net-payments/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Authorize.net AIM Payment Forms</a> =
279
- Process one-time payments in order forms and price calculators with Authorize.net AIM.
280
-
281
- = <a href="https://formidableforms.com/features/customizable-woocommerce-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WooCommerce product configurator</a> =
282
- Add custom fields to a WooCommerce product order form and collect extra data when a product is added to the cart. Use form calculations for variable pricing, upload a file with the purchase, and send custom emails when a purchase is completed.
283
-
284
- = <a href="https://formidableforms.com/features/mailchimp-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">MailChimp Forms</a> =
285
- Add and update leads in a MailChimp email marketing list from a lead form, online order, email, or contact form.
286
-
287
- = <a href="https://formidableforms.com/features/entries-to-constant-contact/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Constant Contact Forms</a> =
288
- Create leads automatically in Constant Contact with a newsletter signup form or registration form.
289
-
290
- = <a href="https://formidableforms.com/features/form-entries-to-getresponse/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">GetResponse Forms</a> =
291
- Collect leads in WordPress forms, add them to GetResponse, and trigger GetResponse marketing automations.
292
-
293
- = <a href="https://formidableforms.com/features/aweber-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">AWeber Forms</a> =
294
- Subscribe users to an AWeber mailing list when a newsletter signup form is submitted.
295
-
296
- = <a href="https://formidableforms.com/features/mailpoet-newsletters-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">MailPoet Newsletter forms</a> =
297
- Fill your email marketing lists from newsletter signup forms. Then send WordPress newsletters from your own site using MailPoet.
298
-
299
- = <a href="https://formidableforms.com/features/highrise-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Highrise Forms</a> =
300
- Add leads to your Highrise CRM account any time a WordPress form is submitted.
301
-
302
- = <a href="https://formidableforms.com/features/form-entries-to-salesforce/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Salesforce Forms</a> =
303
- Create leads and any other Salesforce objects automatically.
304
-
305
- = <a href="https://formidableforms.com/features/entries-to-activecampaign/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">ActiveCampaign Forms</a> =
306
- Let your form pull double duty as a payment form, post creation form, registration form, and email form, and an ActiveCampaign integration.
307
-
308
- = <a href="https://formidableforms.com/features/form-entries-to-hubspot/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a> =
309
- Route lead data from your WordPress forms to HubSpot CRM.
310
-
311
- = <a href="https://formidableforms.com/features/twilio-sms-form-notifications/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Twilio for SMS Forms</a> =
312
- Collect votes and poll responses via SMS text or send SMS notifications when entries are submitted. Get notified instantly when an important payment form or registration form is completed, and let your leads know you received their message.
313
-
314
- = <a href="https://formidableforms.com/features/wpml-translated-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WPML Multilingual Forms</a> =
315
- Translate your WordPress forms into multiple languages using our integrated multilingual forms.
316
-
317
- = <a href="https://formidableforms.com/features/polylang-multilingual-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Polylang Multilingual Forms</a> =
318
- Get the form creator with Polylang bilingual or multilingual contact forms. Start by creating with the form builder, then translate it without duplication.
319
-
320
- = <a href="https://formidableforms.com/features/form-entry-routing-with-zapier/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Zapier Forms</a> =
321
- 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, and more. With Zapier, you have the option to trigger thousands of actions from a lead form, quote form, quiz, registration form, and other web forms.
322
-
323
- = <a href="https://formidableforms.com/features/bootstrap-form-styling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Form Styles</a> =
324
- Instantly add Bootstrap form styling to a survey form or contact form.
325
-
326
- = <a href="https://formidableforms.com/features/bootstrap-modal-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Modal Form</a> =
327
- Open login forms, Formidable views, shortcodes, and other content in a Bootstrap modal popup.
328
 
329
  After reading this feature list, you can probably imagine why Formidable is the most advanced WordPress form plugin on the market.
330
 
@@ -333,7 +219,7 @@ Give Formidable Forms a try.
333
  Want to unlock the full power? <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Upgrade to our Premium forms</a> to get all the features for smart forms and full web applications.
334
 
335
  == Credits ==
336
- This form builder plugin is created by Steve and Steph Wells and the amazing Formidable Team.
337
 
338
  Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a> fund with <a href="https://syedbalkhi.com/">Syed Balkhi</a> as an Advisor to our company.
339
 
@@ -344,35 +230,35 @@ Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a> f
344
  4. Activate Formidable through the 'Plugins' menu
345
  5. Go to the newly added 'Formidable' menu
346
  6. Click the 'Add New' button to go to the form generator page and create a new email form
347
- 7. Insert your newly created registration form, quiz, or survey form on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` to add it in a page template
348
 
349
  == Screenshots ==
350
  1. Build professional WP forms without any code.
351
- 2. Form builder page for creating a survey, quote form, payment form, and quiz form, and many more.
352
  3. Field Options and CSS Layout Classes on the form creator page
353
  4. Field Options for checkbox fields in the form maker
354
- 5. View, create, edit, and delete entries on the back end from a to do list, employment application, order form, and more.
355
- 6. Add a WordPress form into your sidebar with a widget
356
 
357
  == Frequently Asked Questions ==
358
- = How do I get started with the best WordPress form plugin? =
359
- The fastest way to build a form is to use the template we built for you. After you activate Formidable, insert [formidable id=contact-form] on the WordPress page of your choice. That's it!
360
 
361
- Want to make a new form? Go to the Formidable -> Forms page and click "add new". Choose the Contact Us form template on the form buider and click "Create".
362
 
363
- Next, edit or create a WordPress contact page. Click the "Formidable" button to open the shortcode builder. Choose your new registration form and insert it into the WordPress page. Save the page for a beautiful WP contact form, ready to collect and store your leads.
364
 
365
  Learn more about <a href="https://formidableforms.com/wordpress-contact-form-template-to-unique/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">using the contact form template</a>.
366
 
367
- = My WordPress contact form is not sending emails. Why not? =
368
  When you do not receive emails, try the following steps:
369
 
370
- 1. Double check that your email address is present and correct in your Email action on the settings page of the form builder. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
371
  2. Are receiving other emails from your site (ie comment notifications, forgot password...)? If not, notification emails will not work either.
372
  3. Check your SPAM box.
373
- 4. Try a different email address in your settings in the form builder.
374
  5. Install WP Mail SMPT or another similar emailing plugin and configure the SMTP settings.
375
- 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.
376
 
377
  <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.
378
 
@@ -407,7 +293,6 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
407
  * PTO Request
408
  * Online Petitions
409
  * Signature Form
410
- * Custom Signature Form
411
  * Maintenance Request
412
  * Scholarship Applications
413
  * File Download Form
@@ -434,16 +319,123 @@ The Formidable drag & drop form builder combined with our add-ons is the most po
434
  * Online Quote Calculator
435
  * Recipe Reviews
436
 
437
- = I'd like access to all advanced features. How can I get them? =
 
 
438
  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 options, Formidable Views, graphs and stats, priority support, and Formidable Add-ons!
439
 
440
  = Can I create a Payment Form with Formidable? =
441
 
442
- Yes, Formidable is not your basic contact form plugin. You can use it to create any type of form, including payment forms. We make it easy to accept payments using Stripe, PayPal, and Authorize.net.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
 
444
- Our Stripe integration helps you quickly accept credit card payments online. Our PayPal form integration allows you to accept PayPal payments, subscriptions, and donations online.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
 
446
  == Changelog ==
 
 
 
 
447
  = 4.05 =
448
  * Updates to the default form styling.
449
  * New: Added an inbox as a centralized place for notices and communication.
@@ -451,9 +443,4 @@ Our Stripe integration helps you quickly accept credit card payments online. Our
451
  * Help prevent common email issues by showing a warning in the email settings when the from and to email addresses are the same.
452
  * Fix: Forms edited after export and reimported were losing the required indicator in some cases.
453
 
454
- = 4.04.05 =
455
- * When some styling settings are blank, allow inheritance from theme styling.
456
- * Allow a form action to be updated during form migration.
457
- * Code: Update javascript codestyling.
458
-
459
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
1
  === Formidable Form Builder - Contact Form, Survey & Quiz Forms Plugin for WordPress ===
2
  Plugin Name: Formidable Forms - Contact Form, Survey & Quiz Forms Plugin for WordPress
3
  Contributors: formidableforms, sswells, srwells
4
+ Tags: forms, contact form, form builder, survey, form maker, form creator, paypal form, registration form, paypal, paypal form, stripe, stripe form, aweber, aweber form, getresponse, getresponse form, calculator form, calculator, price calculator, quote form, contact button, contact me, form manager, forms creator, Akismet, email form, web form, payment form, survey form, donation form, email submit form, message form, email subscription, contact form widget, user registration form, wordpress registration, wordpress login form, constant contact, mailpoet, active campaign, salesforce, hubspot, campaign monitor
5
  Requires at least: 4.7
6
  Tested up to: 5.4
7
  Requires PHP: 5.6
8
+ Stable tag: 4.05.01
9
 
10
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
11
 
12
  == Description ==
13
+
14
  == The Most Powerful WordPress form builder plugin on the market ==
15
+ 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 a contact form, survey, quiz, registration form, payment form, purchase, email marketing, or calculator form. Build just about anything you can imagine.
16
 
17
+ At Formidable, creating the most extendable form online builder plugin is our #1 priority. Unlike other WordPress form maker plugins that focus just on building a contact form, we believe in pushing the limits. We want to give you the tools to save time and create complex forms quickly!
18
 
19
+ Before we explore the features of the powerful Formidable form builder plugin, you should know that Formidable is 100% mobile responsive. Your WordPress forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
20
 
21
+ Plus, we have optimized Formidable for speed and maximum server performance. Whether you are building a basic contact form on your own site or an advanced form for your client, you can confidently say that Formidable is one of the FASTEST WordPress form builders on the market.
22
 
23
  > <strong>Formidable Forms Pro</strong><br />
24
+ > This form builder plugin is the free version of Formidable that comes with all the features you will ever need. Build an advanced email subscription form, multi-page form, file upload form, quiz, or a smart form with conditional logic. Stack on repeater fields, payment integrations, form templates, form relationships, cascading dropdown fields. Don't forget the calculated fields, front-end form editing, and powerful Formidable Views to display data in web applications. With Formidable, you get far more than just a contact form.
25
+ > <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion" rel="friend" title="Formidable">Click here to purchase the most advanced premium WordPress form builder plugin now!</a>
26
 
27
+ You can start with our pre-built templates or create totally custom forms from scratch. All with an easy-to-use drag & drop form maker interface.
28
 
29
  https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
30
 
31
+ Lets take a look at all the powerful features for making an amazing lead form, survey form, poll, subscription form, request a quote form, donation form, user registration form, quiz, or payment form.
32
 
33
  == Drag & Drop Form Maker and Advanced Form Builder ==
34
 
35
+ The Formidable drag & drop form builder allows you to quickly build unlimited surveys, quizzes, registration forms, price calculators, and any other type of form.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
+ Our form maker comes with all the powerful form fields that you need to create a solution-focused form, fast!
 
 
 
 
 
 
 
 
38
 
39
  == Complete Entry Management for Forms and Surveys ==
40
 
41
+ Formidable allows you to view all your form and survey entries right from your WordPress dashboard. Once a user submits a form, their response is stored in your WordPress database so you won't lose any leads.
 
 
42
 
43
+ Formidable is a **100% GDPR-friendly** form generator. You can turn off IP tracking or stop saving submissions entirely. Or add a GDPR checkbox field to your lead forms and payment forms to collect consent.
44
 
45
+ Need to import your leads to an email marketing service? No problem. **Export leads to a CSV**, open it in Excel, or import anywhere.
46
 
47
  You can also configure unlimited email notifications and autoresponders triggered by form submissions.
48
 
49
+ On top of that, you can easily customize the success message after a form is submitted, or redirect visitors to another page.
50
 
51
  == The Only Form Maker Plugin with an Advanced Form Styler ==
52
 
53
  With our built-in form styler, you can instantly customize the look and feel of your contact form. With just a few clicks, your email form can be transformed to match your website design.
54
 
55
+ By default, Formidable applies a single styling template to your WordPress forms. If you want a custom form style for each user registration form, quiz, and sidebar form, check out the premium version of Formidable.
56
 
57
  == Build Smart Surveys with Beautiful Reports ==
58
 
59
  Formidable comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.
60
 
61
+ Our graphs and reports will help you analyze and showcase data. We believe that data alone does no good if you can't analyze it. That’s why we make it easy to analyze data from a survey, quiz, or price calculator.
62
+
63
+ You can even showcase form data on the front-end of your website. Just embed graphs in your WordPress posts or pages.
64
+
65
  The best part is that you can do this all within Formidable without any third-party tools.
66
 
67
  == Quickly Create an Advanced WordPress Registration Form for Any Use Case ==
68
 
69
+ Whether you need to create a youth sports team, event, or church retreat registration, Formidable has you covered. Unlike other form plugins, Formidable comes with a repeater field that allows you to create the best registration forms.
70
 
71
  Then, our marketing integrations and APIs can send the email form and other form data anywhere you want.
72
 
76
 
77
  We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create an order form, donation form, or purchase form with our drag & drop form builder.
78
 
79
+ You can even use Formidable to create a WooCommerce form with custom fields.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
 
81
+ == Make Data-Driven Web Applications with a Formidable View ==
 
 
82
 
83
  Formidable Views are by far the most powerful feature that makes Formidable far more than just a contact form builder plugin. Views allow you to flexibly display any submitted form data on the front-end of your website.
84
 
85
+ Our customers use Formidable Views to create data-driven web applications. We see real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.
86
 
87
  As you can see, Formidable is not your average contact form plugin. It's a true all-in-one WordPress form solution.
88
 
89
+ == Increase Sales with WooCommerce Product Order Forms ==
90
 
91
  Formidable is the only WordPress form builder plugin that offers extensive integration with WooCommerce orders.
92
 
93
  Our goal is to empower you to build powerful WooCommerce product order forms, so you can increase your store sales.
94
 
95
+ You can add a WooCommerce product configurator with custom calculation fields. Then automatically send the order info to the WooCommerce cart with variable pricing options.
 
 
 
 
96
 
97
  == Make Powerful Quiz Forms & Calculators ==
98
 
104
  * <a href="https://formidableforms.com/form-templates/simple-mortgage-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Basic Mortgage Calculator</a>
105
  * <a href="https://formidableforms.com/form-templates/automobile-payment-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Car Payment Calculator</a>
106
  * <a href="https://formidableforms.com/form-templates/nps-survey-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Net Promoter Score (NPS) Survey Calculator</a>
107
+ * <a href="https://formidableforms.com/form-templates/bmi-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">BMI Calculator</a> and more Health and Fitness Calculators
108
+ * <a href="https://formidableforms.com/form-templates/age-calculator-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User Age Calculator</a>
109
  * Online Quote Calculator
110
  * <a href="https://formidableforms.com/form-templates/nps-survey-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Net Promoter Score (NPS) Survey Calculator</a>
111
  * Finance Calculator
114
 
115
  ... and our powerful calculated fields allow you to build just about any other type of calculator.
116
 
117
+ You can also create a poll, or survey on your WordPress site and display the results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.
118
 
119
+ Now you can go beyond a simple contact form and create custom form-based solutions without any code.
120
 
121
  == Create a WordPress User Registration Form, Profile Form, and More ==
122
 
123
+ If you run a WordPress membership site, then you need more advanced forms. The Formidable form maker allows you to customize your WordPress user registration form and collect data with a user profile.
 
 
124
 
125
+ With our front-end editing, you can build a custom profile form for users to keep their profile up to date. You can even progressively add to the profile from a set of forms. Everything from the first contact form or lead form to the last payment form can extend the user profile.
126
 
127
+ You will not find any other WordPress form plugin offering a front-end editing solution with the same level of extendability.
 
 
 
 
 
 
128
 
129
  == All the Advanced Form Fields and Features You Need to Grow Your Business ==
130
 
131
+ Formidable goes far above and beyond basic contact forms. We offer features like multi-page forms, save and continue, cascading form fields, powerful conditional logic, partial submissions, invisible spam protection, front-end user post submission, calculated fields, user-tracking, quizzes, and so much more. Additionally, our Payment fields will help you create an order form, donation form, booking form, or other payment form.
 
 
132
 
133
+ We're on a mission to offer an all-in-one solution-focused WordPress form plugin. This way you don't have to install 5 plugins alongside your form maker to do everything you want.
134
 
135
  == Extend and Customize Your Forms - Developer's Dream Come True ==
136
 
137
+ Formidable is the form plugin of choice for smart developers, freelancers, and agencies. It helps you build complex solutions and simple forms quickly to defy the limits imposed by time and knowledge.
138
 
139
+ Our goal is to help you build complex websites with low overhead. That's why we made Formidable the most extendable WordPress form builder plugin on the market. We want to make it possible for anyone to defy gravity and build anything.
140
 
141
+ A Formidable View allows you to display form data anywhere, so you can quickly create data-driven web applications.
 
 
142
 
143
  On top of that, our hooks and filters allow you to extend Formidable to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.
144
 
145
  == Full Formidable Feature List ==
146
 
147
+ Since Formidable is not your average WordPress form plugin, this feature list is going to be very long. Read through it, or just install the most powerful WordPress form maker. Your choice :)
148
 
149
+ * <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 a contact form or email form to a price calculator or complex online form. Make awesome forms the easy way with a simple WordPress drag and drop form maker. You don't have to be a code ninja.
150
+ * <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 Formidable Views to turn forms into solutions. Think job boards, event calendars, business directories, ratings systems, management solutions, and pretty much anything else you can come up with.
151
+ * <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 visitors to add sets of fields on the fly. This is great for a registration form, application, calculator, or email form.
152
+ * <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. This is great for a job application form (resumes), WordPress User Profile Form (avatars), or get a quote form.
153
  * <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 a smart contact form? Create beautiful paged forms with rootline and progress indicators. Add conditional logic to page breaks for a smart branching form.
154
+ * <a href="https://formidableforms.com/features/cascading-dropdown-lookup-field/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Cascading lookup fields</a>. Autofill values in other form fields or drill down through options to reveal a final value. Designed for year/make/model fields in auto forms and country/state/city fields. You can even use lookup fields to get a price from a separate product form.
155
  * Datepicker fields with advanced <a href="https://formidableforms.com/features/datepicker-options-for-dates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">datepicker options</a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. Our datepickers are great for email forms, basic online booking, and event registration.
156
+ * Dynamic field relationships. Populate form fields from other forms and link data between two forms without duplication. These relationships are helpful in a huge number of cases. For example, you can link employment applications to a job, quizzes to a class, an event registration to an event, or a sports registration to a team.
157
  * Add password fields with a password strength meter in a WordPress user registration form, profile form, and change password form.
158
+ * Collect reviews with star ratings for feedback, recipe ratings, product review, event rating, and customer testimonial forms. Then share your ratings with Formidable Views.
159
  * <a href="https://formidableforms.com/features/confirm-email-address-password-wordpress-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Confirmation fields</a>. Double check email addresses or passwords and prevent typos from cannibalizing your leads.
160
  * <a href="https://formidableforms.com/features/conditional-logic-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Conditional logic for smart forms</a>. Show or hide fields based on user selections or user roles. Make complex forms simple and increase conversion rates.
161
  * <a href="https://formidableforms.com/features/email-autoresponders-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Send email notifications & autoresponders</a>. Automatically let clients know you received their message. Then create customized email notifications for multiple recipients and get info from an email form to those who need it.
162
+ * Email routing. Conditionally send multiple autoresponder emails and notifications based on values in email forms, user registration forms, and payment forms.
163
  * Pricing fields for easy eCommerce forms with automatic price calculations. Drop in a product field, quantity, and total and you're good to go.
164
+ * <a href="https://formidableforms.com/wordpress-calculator-plugin/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Calculator forms</a>. Create basic and complex calculations, and even combine text from multiple fields. This is great for a mortgage calculator, auto loan calculator, and many other calculators. Even a contact form can benefit from price calculations for easy quotes and price estimates. We recommend adding range sliders for calculator forms your clients will love.
165
+ * <a href="https://formidableforms.com/features/wordpress-visual-form-styler/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Visual style creator</a>. Having trouble styling your WordPress forms? Our form creator not only allows you to build contact forms, but also brand calculator forms, email forms, quiz forms, and other web forms to match your site. Change colors, borders, font sizes, and more without any code.
166
  * <a href="https://formidableforms.com/features/flexible-layouts-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Flexible form layout design</a>. Build mobile responsive forms and advanced layouts with multiple fields in a row by using our CSS layout classes.
167
+ * <a href="https://formidableforms.com/features/wordpress-mobile-friendly-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Mobile-friendly, responsive forms</a>. All of our forms are sized automatically for every screen size. Ensure that everyone can see and submit your surveys, calculator forms, Stripe forms, and web forms from any device.
168
  * <a href="https://formidableforms.com/features/user-submitted-posts-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User submitted front-end posts and pages</a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from a post creation form to a page.
169
+ * <a href="https://formidableforms.com/features/form-entry-management-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Simple entry management</a>. Flexibly display, edit, and delete form entries from anywhere on your site. Set permissions so logged-in users can manage their personal journal entries, weight tracking, guest blog posts, RSVP status, and more.
170
  * <a href="https://formidableforms.com/features/front-end-editing-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress front-end editing</a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.
171
+ * Logged-in users can <a href="https://formidableforms.com/features/save-and-continue-partial-submissions/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">save and continue partial form submissions</a>. Whether it's a basic contact form or a long multi-paged quiz form, users can save form progress and pick up where they left off.
172
+ * <a href="https://formidableforms.com/features/create-a-graph-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Graphs and charts for data visualization</a>. Display statistics from a survey, poll, questionnaire, and contact form. Or graph data in a variety of ways. Whatever you choose, it can automatically update as new data is submitted (great for weight tracking over time).
173
  * Permission settings. Limit visibility of specialized forms based on user role.
174
+ * Entry limits. Limit surveys, registration forms, bookings, quizzes, or directory submissions to only allow one entry per user, IP, or cookie.
175
+ * <a href="https://formidableforms.com/features/wordpress-schedule-forms-limit-responses/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form scheduling</a>. Open and close event registration and signup forms on a specific date. Or close registration forms when the seat limit has been reached.
176
+ * Conditionally redirect after a custom search form, payment form, support ticket form, quiz, or other online form is submitted. Help clients find the answers they are looking for and show a tailored result based on their selections and calculated fields.
177
+ * We believe that forms should be extendable to meet your needs. So we give you access to <a href="https://formidableforms.com/features/customize-form-html-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">customize the form HTML</a> (like Contact Form 7). But you keep the ease and speed of a drag & drop form builder plugin. Our team labors for simplicity without sacrificing flexibility.
178
  * <a href="https://formidableforms.com/features/importing-exporting-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Import and export forms, form submissions, styles, and views</a>. Quickly move forms, entries, views and styles to another site. Need to export leads from a form to another service? Check.
179
+ * <a href="https://formidableforms.com/features/wordpress-form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form templates for instant form building</a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable View templates. Our WordPress form generator makes it FAST to build job application forms, calculator forms, user registration forms, and other types of online forms.
180
  * Import our <a href="https://formidableforms.com/form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">pre-built form/view templates</a> as a shortcut to a final product. Our growing form template library includes payment forms, calculators, a WooCommerce product creator, and more.
181
+ * <a href="https://formidableforms.com/features/wcag-accessible-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WCAG accessible forms with A11Y and ADA compliance</a>. Don't alienate your audience. Ensure your survey, calculator, lead capture form, quizzes, and other online forms are compliant and available to everyone. Allow those using screenreaders to successfully use your WordPress forms.
182
+ * <a href="https://formidableforms.com/features/invisible-spam-protection/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Invisible SPAM protection</a>. Don't waste time sorting through SPAM. Get instant and powerful anti-spam features from honeypot, invisible Google reCAPTCHA, Akismet, and the WordPress comment blacklist.
183
  * <a href="https://formidableforms.com/features/fill-out-forms-automatically/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Fill out forms automatically</a> with values from the user profile or posts (i.e. custom fields). When a user is logged in, prefill known values like first name, last name, and email address.
184
  * <a href="https://formidableforms.com/features/white-label-form-builder-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">White label forms</a>. Replace the Formidable branding with your own in the admin area. Plus, we never show "powered by" links in your free contact form or other online form.
185
+ * <a href="https://formidableforms.com/features/wordpress-user-registration/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress user registration forms</a>. Register WordPress users, edit profiles, reset passwords, and add a login form. You can even allow logged in and logged out users to create new subdomains with WordPress multisite forms.
186
+ * <a href="https://formidableforms.com/features/digital-form-signatures/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Digital signature forms</a>. Eliminate paper forms with a digital signature field in contracts, application forms and more.
187
+ * <a href="https://formidableforms.com/features/form-action-automation-scheduling/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form action automation</a>. Schedule form email notifications, SMS messages, and webhooks to trigger at a later time. You can automatically delete guest posts after 30 days, send weekly digest emails, or trigger happy birthday text messages from a lead form.
188
  * <a href="https://formidableforms.com/features/wordpress-form-api/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms API</a>. Send form entries to other REST APIs and add a set of form webhooks. This includes the option to send form entries from one Formidable site to another.
189
  * <a href="https://formidableforms.com/features/quiz-maker-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Quiz maker forms</a>. Write your quiz form questions, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz grading is automatically done for you with our quiz plugin.
190
+ * <a href="https://formidableforms.com/knowledgebase/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">World class support</a>. Have questions on how to use our contact form maker or set up your web application? We are happy to help. Our passion is to help you <strong>defy the limits</strong> to take on bigger projects, earn more clients, and grow your business.
191
 
192
  == Payment Forms, Form APIs, and Marketing Integrations ==
193
+ In addition to all the features listed above, power up with these integrations.
194
+
195
+ * <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 and donation forms.
196
+ * <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 Stripe payments from a credit card form. Select from one time and recurring charges in order forms and donation forms. Stripe processes payments with simple PCI compliance.
197
+ * <a href="https://formidableforms.com/features/authorize-net-payments/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Authorize.net AIM Payment Forms</a>. Process one-time payments in order forms and price calculators with Authorize.net AIM. For recurring payments or easier security compliance, we recommend Stripe.
198
+ * <a href="https://formidableforms.com/features/customizable-woocommerce-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WooCommerce product configurator</a>. Add custom fields to a WooCommerce product order form and collect extra data when a product is added to the cart. Use form calculations for variable pricing or upload a file with the order.
199
+ * <a href="https://formidableforms.com/features/mailchimp-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">MailChimp Forms</a>. Add and update leads in a MailChimp email marketing list from a lead form, online order, or email form.
200
+ * <a href="https://formidableforms.com/features/entries-to-constant-contact/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Constant Contact Forms</a>. Create leads automatically in Constant Contact with a newsletter signup form or registration form.
201
+ * <a href="https://formidableforms.com/features/form-entries-to-getresponse/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">GetResponse Forms</a>. Collect leads in WordPress forms, add them to GetResponse, and trigger GetResponse marketing automations.
202
+ * <a href="https://formidableforms.com/features/aweber-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">AWeber Forms</a>. Subscribe users to an AWeber mailing list when a newsletter signup form is submitted.
203
+ * <a href="https://formidableforms.com/features/mailpoet-newsletters-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">MailPoet Newsletter forms</a>. Fill your email marketing lists from newsletter signup forms. Then send WordPress newsletters from your own site using MailPoet.
204
+ * <a href="https://formidableforms.com/features/highrise-addon/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Highrise Forms</a>. Add leads to your Highrise CRM account any time a WordPress form is submitted.
205
+ * <a href="https://formidableforms.com/features/form-entries-to-salesforce/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Salesforce Forms</a>. Create leads and any other Salesforce objects automatically.
206
+ * <a href="https://formidableforms.com/features/entries-to-activecampaign/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">ActiveCampaign Forms</a>. Let your form pull double duty with the ActiveCampaign integration. Save leads from a payment form, post creation form, user registration form, or email form.
207
+ * <a href="https://formidableforms.com/features/form-entries-to-hubspot/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a>. Route lead data from your WordPress forms to HubSpot CRM.
208
+ * <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 entries are submitted. Get notified instantly when a payment form or registration form is completed, or let your leads know you received their message.
209
+ * <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.
210
+ * <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.
211
+ * <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 thousands of applications through Zapier from a lead form, quote form, user registration form, and other web forms. Insert a new row in a Google docs spreadsheet, post on Twitter, or upload a Dropbox file from a calculator form.
212
+ * <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 a survey form, quiz form, registration form, or contact form.
213
+ * <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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
 
215
  After reading this feature list, you can probably imagine why Formidable is the most advanced WordPress form plugin on the market.
216
 
219
  Want to unlock the full power? <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Upgrade to our Premium forms</a> to get all the features for smart forms and full web applications.
220
 
221
  == Credits ==
222
+ This online form builder plugin is created by Steve and Steph Wells and the amazing Formidable Team.
223
 
224
  Formidable is part of the <a href="https://www.wpbeginner.com/">WPBeginner</a> fund with <a href="https://syedbalkhi.com/">Syed Balkhi</a> as an Advisor to our company.
225
 
230
  4. Activate Formidable through the 'Plugins' menu
231
  5. Go to the newly added 'Formidable' menu
232
  6. Click the 'Add New' button to go to the form generator page and create a new email form
233
+ 7. Insert your newly created user registration form, quiz, or survey form on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` to add it in a page template
234
 
235
  == Screenshots ==
236
  1. Build professional WP forms without any code.
237
+ 2. Form maker page for creating a survey, quote form, Stripe payment form, quiz form, and many more.
238
  3. Field Options and CSS Layout Classes on the form creator page
239
  4. Field Options for checkbox fields in the form maker
240
+ 5. View, create, edit, and delete entries on the back end from a to do list, employment application, and more.
241
+ 6. Add a WordPress form into your sidebar with a contact form widget
242
 
243
  == Frequently Asked Questions ==
244
+ = How do I get started with the best form builder for WordPress? =
245
+ The fastest way to build a form is to use the template we built for you. After you activate Formidable, insert [formidable id=contact-form] on the WordPress page of your choice.
246
 
247
+ Want to make a new form? Go to the Formidable -> Forms page and click "add new". Choose the Contact Us form template or another free template and click "Create".
248
 
249
+ Next, edit or create a WordPress contact page. Click the "Formidable" button to open the shortcode builder. Choose your new registration form, Stripe form, quiz, or web form and insert it into the WordPress page. Save the page for a beautiful WP contact form, ready to collect and store your leads.
250
 
251
  Learn more about <a href="https://formidableforms.com/wordpress-contact-form-template-to-unique/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">using the contact form template</a>.
252
 
253
+ = Why isn't my WordPress contact form sending emails? =
254
  When you do not receive emails, try the following steps:
255
 
256
+ 1. Double check the email address in your Email action on the settings page of the form builder. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
257
  2. Are receiving other emails from your site (ie comment notifications, forgot password...)? If not, notification emails will not work either.
258
  3. Check your SPAM box.
259
+ 4. Try a different email address in your form settings.
260
  5. Install WP Mail SMPT or another similar emailing plugin and configure the SMTP settings.
261
+ 6. If these steps don't fix the email problem and other WP emails are not going out, please contact your web host.
262
 
263
  <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.
264
 
293
  * PTO Request
294
  * Online Petitions
295
  * Signature Form
 
296
  * Maintenance Request
297
  * Scholarship Applications
298
  * File Download Form
319
  * Online Quote Calculator
320
  * Recipe Reviews
321
 
322
+ To see more, visit our <a href="https://formidableforms.com/form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin">Form Template Gallery</a> which has almost 100 pre-made templates.
323
+
324
+ = How can I get access to all advanced features? =
325
  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 options, Formidable Views, graphs and stats, priority support, and Formidable Add-ons!
326
 
327
  = Can I create a Payment Form with Formidable? =
328
 
329
+ Yes! You can create any type of form, including payment forms. We make it easy to accept payments using Stripe, PayPal, and Authorize.net.
330
+
331
+ Our Stripe integration helps you quickly accept credit card payments online. Our PayPal forms allow you to accept PayPal payments, subscriptions, and donations online.
332
+
333
+ = Which form fields does Formidable offer? =
334
+
335
+ Our online form maker comes with all the powerful form fields that you need to create a solution-focused form, fast!
336
+
337
+ * Single line text - Great for name, phone number, address, and more.
338
+ * Email
339
+ * Website/URL
340
+ * Paragraph text
341
+ * Checkboxes and radio buttons
342
+ * Dropdown select boxes
343
+ * Number
344
+ * Phone number
345
+ * Hidden fields
346
+ * User ID
347
+ * HTML block - Great for custom HTML
348
+ * Google reCAPTCHA (invisible V2 or checkbox V2)
349
 
350
+ Here is a list of our advanced premium fields that will come in handy:
351
+
352
+ * File Upload
353
+ * Rich Text
354
+ * Date
355
+ * Time
356
+ * Scale
357
+ * Star Rating - Great for surveys and polls.
358
+ * Range Slider
359
+ * Toggle
360
+ * Dynamic - Great for creating relationships between entries.
361
+ * Repeater - Great for registering multiple kids, job history in an application, and much more.
362
+ * Tags
363
+ * Summary - Great to review responses before submit.
364
+ * Lookup - Great for cascading lookups like country, city, state.
365
+ * Section Heading
366
+ * Page Break
367
+ * Embed Form - Great for reusing the same set of fields in multiple places.
368
+ * Password Field - Great for user registration forms.
369
+ * Address Field
370
+ * Signature - Great for contracts and booking.
371
+ * Quiz Score
372
+
373
+ Additionally, our Payment fields will help you create an order form, donation form, booking form, or other payment form.
374
+
375
+ * Single Item
376
+ * Multiple Items
377
+ * Checkbox Items
378
+ * Dropdown Items
379
+ * Product Quantity
380
+ * Total (Price Calculation Field)
381
+ * Credit Card (Stripe Form or Authorize.net Form)
382
+
383
+ = Can I import and export? =
384
+
385
+ Yes, Formidable makes it easy to import and export your WordPress forms. This is incredibly useful for developers and agencies who are building websites for clients. You can also create custom form templates to use on client websites.
386
+
387
+ Formidable also allows you to import forms from other WordPress contact form plugins such as <a href="https://wordpress.org/plugins/formidable-gravity-forms-importer/">Gravity Forms</a> and Pirate Forms.
388
+
389
+ = Can I integrate Formidable with my CRM or email marketing service? =
390
+
391
+ Yes! We know that marketing is the key to grow your business. That's why Formidable allows you to connect your WP form, payment form, calculator, or advanced form with the marketing platform of your choice. You can easily send data from your custom contact form and other WordPress forms to your favorite CRM, email newsletter, and other marketing platforms.
392
+
393
+ Here is a list of our popular marketing integrations:
394
+
395
+ * MailChimp
396
+ * AWeber
397
+ * Constant Contact
398
+ * GetResponse
399
+ * MailPoet
400
+ * Active Campaign
401
+ * Salesforce CRM
402
+ * HubSpot CRM
403
+ * Campaign Monitor
404
+
405
+ Using our Zapier integration, you can easily connect Formidable with over 1000+ marketing apps including:
406
+
407
+ * Google Sheets
408
+ * SendInBlue
409
+ * Zoho CRM
410
+ * Zoho Mail
411
+ * Zoho Invoice
412
+ * Agile CRM
413
+ * Slack
414
+ * Trello
415
+ * Infusionsoft by Keap
416
+ * Microsoft Excel
417
+ * Dropbox
418
+ * PipeDrive CRM
419
+ * HelpScout
420
+ * Zendesk
421
+ * Freshbooks
422
+ * Freshsales
423
+ * Intercom
424
+ * Click Funnels
425
+ * Microsoft Dynamics 365 CRM
426
+ * Capsule CRM
427
+ * Insightly CRM
428
+ * Printfection
429
+ * Acuity Scheduling
430
+ * Quickbooks Online
431
+
432
+ See all <a href="https://zapier.com/apps/formidable/integrations">Formidable Zapier Integrations</a>.
433
 
434
  == Changelog ==
435
+ = 4.05.01 =
436
+ * Fix: The entry list wasn't always showing the entries.
437
+ * Better sync between review requests in inbox and message.
438
+
439
  = 4.05 =
440
  * Updates to the default form styling.
441
  * New: Added an inbox as a centralized place for notices and communication.
443
  * Help prevent common email issues by showing a warning in the email settings when the from and to email addresses are the same.
444
  * Fix: Forms edited after export and reimported were losing the required indicator in some cases.
445
 
 
 
 
 
 
446
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>