Contact Form for WordPress – Ultimate Form Builder Lite - Version 1.1.6

Version Description

  • Fixed multiple select dropdown issue for template 4
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Contact Form for WordPress – Ultimate Form Builder Lite
Version 1.1.6
Comparing to
See all releases

Code changes from version 1.1.5 to 1.1.6

css/backend.css CHANGED
@@ -704,4 +704,4 @@ h4.ufbl-content-title {
704
  .ufbl-table {
705
  width: 72%;
706
  float: left;
707
- }
704
  .ufbl-table {
705
  width: 72%;
706
  float: left;
707
+ }
css/frontend.css CHANGED
@@ -1412,4 +1412,7 @@ color:#fff !important;
1412
 
1413
  .ufbl-form-textarea {
1414
  width: 100%;
 
 
 
1415
  }
1412
 
1413
  .ufbl-form-textarea {
1414
  width: 100%;
1415
+ }
1416
+ .ufbl-multiple-dropdown {
1417
+ height: auto !important;
1418
  }
inc/views/frontend/front-form.php CHANGED
@@ -52,12 +52,13 @@ $form_width = (isset( $form_design['form_width'] ) && $form_design['form_width']
52
  break;
53
  case 'dropdown':
54
  $multiple = (isset( $val['multiple'] ) && $val['multiple'] == 1) ? 'multiple' : '';
 
55
  $name = (isset( $val['multiple'] ) && $val['multiple'] == 1) ? $key . '[]' : $key;
56
  ?>
57
  <div class="ufbl-form-field-wrap <?php echo ($val['field_class'] != '') ? esc_attr( $val['field_class'] ) : ''; ?>" <?php echo ($val['field_id'] != '') ? 'id="' . esc_attr( $val['field_id'] ) . '"' : ''; ?>>
58
  <label><?php echo esc_attr( $val['field_label'] ); ?></label>
59
  <div class="ufbl-form-field">
60
- <select name="<?php echo $name; ?>" class="ufbl-form-dropdown <?php echo $class; ?>" <?php echo $multiple;?>>
61
  <?php
62
  if ( isset( $val['option'] ) && count( $val['option'] ) > 0 ) {
63
  $count = 0;
52
  break;
53
  case 'dropdown':
54
  $multiple = (isset( $val['multiple'] ) && $val['multiple'] == 1) ? 'multiple' : '';
55
+ $select_class = (isset( $val['multiple'] ) && $val['multiple'] == 1) ? 'ufbl-multiple-dropdown' : 'ufbl-form-dropdown';
56
  $name = (isset( $val['multiple'] ) && $val['multiple'] == 1) ? $key . '[]' : $key;
57
  ?>
58
  <div class="ufbl-form-field-wrap <?php echo ($val['field_class'] != '') ? esc_attr( $val['field_class'] ) : ''; ?>" <?php echo ($val['field_id'] != '') ? 'id="' . esc_attr( $val['field_id'] ) . '"' : ''; ?>>
59
  <label><?php echo esc_attr( $val['field_label'] ); ?></label>
60
  <div class="ufbl-form-field">
61
+ <select name="<?php echo $name; ?>" class="<?php echo $select_class;?> <?php echo $class; ?>" <?php echo $multiple;?>>
62
  <?php
63
  if ( isset( $val['option'] ) && count( $val['option'] ) > 0 ) {
64
  $count = 0;
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Ultimate Form Builder Lite ===
2
  Contributors: Access Keys
3
  Tags: contact form, form builder, form, forms, contact forms, enquiry forms, form manager, email form, lead form, email, database store form, form entry, form entries, email forms
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.4
7
- Stable tag: 1.1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -140,6 +140,9 @@ Once you install the plugin , you can check some general documentation about how
140
  10. Backend Entry Detail
141
 
142
  == Changelog ==
 
 
 
143
  = 1.1.5 =
144
  * Addition of pot file for the translation of a plugin.
145
 
1
+ === Contact Form for WordPress - Ultimate Form Builder Lite ===
2
  Contributors: Access Keys
3
  Tags: contact form, form builder, form, forms, contact forms, enquiry forms, form manager, email form, lead form, email, database store form, form entry, form entries, email forms
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.4
7
+ Stable tag: 1.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
140
  10. Backend Entry Detail
141
 
142
  == Changelog ==
143
+ = 1.1.6 =
144
+ * Fixed multiple select dropdown issue for template 4
145
+
146
  = 1.1.5 =
147
  * Addition of pot file for the translation of a plugin.
148
 
ultimate-form-builder-lite.php CHANGED
@@ -6,7 +6,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
6
  Plugin Name: Ultimate Form Builder Lite
7
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
8
  Description: A plugin to build any type of forms
9
- Version: 1.1.5
10
  Author: AccessPress Themes
11
  Author URI: http://accesspressthemes.com
12
  License: GPL2
@@ -19,7 +19,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
19
  * Necessary Constants for plugin
20
  */
21
  global $wpdb;
22
- defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.1.5' ); //plugin version
23
  defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
24
  defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
25
  defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
6
  Plugin Name: Ultimate Form Builder Lite
7
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
8
  Description: A plugin to build any type of forms
9
+ Version: 1.1.6
10
  Author: AccessPress Themes
11
  Author URI: http://accesspressthemes.com
12
  License: GPL2
19
  * Necessary Constants for plugin
20
  */
21
  global $wpdb;
22
+ defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.1.6' ); //plugin version
23
  defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
24
  defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
25
  defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory