Version Description
- Added note for csv export
- Updated pagination layout in backend
Download this release
Release Info
Developer | Access Keys |
Plugin | Contact Form for WordPress – Ultimate Form Builder Lite |
Version | 1.1.7 |
Comparing to | |
See all releases |
Code changes from version 1.1.6 to 1.1.7
- css/backend.css +1 -0
- inc/views/backend/form-entries-list.php +3 -0
- readme.txt +6 -2
- ultimate-form-builder-lite.php +2 -2
css/backend.css
CHANGED
@@ -487,6 +487,7 @@ span.ufbl-option-drag-arrow.ui-sortable-handle {
|
|
487 |
}
|
488 |
.ufbl-entry-filter-wrap {
|
489 |
margin: 20px 0px;
|
|
|
490 |
}
|
491 |
input.ufbl-csv-export-trigger {
|
492 |
height: 34px;
|
487 |
}
|
488 |
.ufbl-entry-filter-wrap {
|
489 |
margin: 20px 0px;
|
490 |
+
width:72%;
|
491 |
}
|
492 |
input.ufbl-csv-export-trigger {
|
493 |
height: 34px;
|
inc/views/backend/form-entries-list.php
CHANGED
@@ -72,10 +72,13 @@
|
|
72 |
}
|
73 |
?>
|
74 |
</div>
|
|
|
|
|
75 |
</div><?php
|
76 |
}
|
77 |
?>
|
78 |
</div>
|
|
|
79 |
<table class="wp-list-table widefat fixed posts ufbl-table">
|
80 |
<thead>
|
81 |
<tr>
|
72 |
}
|
73 |
?>
|
74 |
</div>
|
75 |
+
<div class="ufbl-clear"></div>
|
76 |
+
|
77 |
</div><?php
|
78 |
}
|
79 |
?>
|
80 |
</div>
|
81 |
+
<p class="description"><?php _e('Please choose a form from list to export to CSV','ultimate-form-builder-lite');?></p>
|
82 |
<table class="wp-list-table widefat fixed posts ufbl-table">
|
83 |
<thead>
|
84 |
<tr>
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
===
|
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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -140,6 +140,10 @@ Once you install the plugin , you can check some general documentation about how
|
|
140 |
10. Backend Entry Detail
|
141 |
|
142 |
== Changelog ==
|
|
|
|
|
|
|
|
|
143 |
= 1.1.6 =
|
144 |
* Fixed multiple select dropdown issue for template 4
|
145 |
|
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.7
|
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.7 =
|
144 |
+
* Added note for csv export
|
145 |
+
* Updated pagination layout in backend
|
146 |
+
|
147 |
= 1.1.6 =
|
148 |
* Fixed multiple select dropdown issue for template 4
|
149 |
|
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.
|
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.
|
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.7
|
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.7' ); //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
|