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

Version Description

  • Removed Unused form builder function
Download this release

Release Info

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

Code changes from version 1.2.5 to 1.2.6

Files changed (2) hide show
  1. readme.txt +7 -3
  2. ultimate-form-builder-lite.php +2 -8
readme.txt CHANGED
@@ -4,13 +4,14 @@ Tags: contact form, form builder, form, forms, contact forms, enquiry forms, for
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 4.0
6
  Tested up to: 4.6
7
- Stable tag: 1.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Contact Forms | Subscription Forms | Enquiry/quote Forms - build any type of unlimited forms with ultimate form builder
12
 
13
  == Description ==
 
14
 
15
  <strong>Ultimate Form Builder Lite</strong> is a <strong>FREE WordPress Plugin</strong> which allows you to create various contact forms with drag and drop form builder. Its fun because - you can create, customize and build the beautiful forms for your site on your own, receive contact email on any desired email address and store the form entries in your database which can be exported to CSV for your use via plugin's backend.
16
 
@@ -116,7 +117,7 @@ For complete information and documentation regarding plugin,please visit below l
116
 
117
  [Plugin Documentation](https://accesspressthemes.com/documentation/documentation-plugin-instruction-ultimate-form-builder-lite/)
118
 
119
- [More WordPress Resources](http://wpall.club)
120
 
121
  == Installation ==
122
  1. Unzip ultimate-form-builder-lite.zip
@@ -148,8 +149,11 @@ Once you install the plugin , you can check some general documentation about how
148
  10. Backend Entry Detail
149
 
150
  == Changelog ==
 
 
 
151
  = 1.2.5 =
152
- * Added More WordPress Resources
153
 
154
  = 1.2.4 =
155
  * Added ufbl_time_format filter for time format change
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 4.0
6
  Tested up to: 4.6
7
+ Stable tag: 1.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Contact Forms | Subscription Forms | Enquiry/quote Forms - build any type of unlimited forms with ultimate form builder
12
 
13
  == Description ==
14
+ [Homepage](https://accesspressthemes.com) | [Demo](http://demo.accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/) | [Documentation](https://accesspressthemes.com/documentation/documentation-plugin-instruction-ultimate-form-builder-lite/) | [Support](https://accesspressthemes.com/support)
15
 
16
  <strong>Ultimate Form Builder Lite</strong> is a <strong>FREE WordPress Plugin</strong> which allows you to create various contact forms with drag and drop form builder. Its fun because - you can create, customize and build the beautiful forms for your site on your own, receive contact email on any desired email address and store the form entries in your database which can be exported to CSV for your use via plugin's backend.
17
 
117
 
118
  [Plugin Documentation](https://accesspressthemes.com/documentation/documentation-plugin-instruction-ultimate-form-builder-lite/)
119
 
120
+ [Browse More WordPress Plugin Resources](http://wpall.club)
121
 
122
  == Installation ==
123
  1. Unzip ultimate-form-builder-lite.zip
149
  10. Backend Entry Detail
150
 
151
  == Changelog ==
152
+ = 1.2.6 =
153
+ * Removed Unused form builder function
154
+
155
  = 1.2.5 =
156
+ * Added More WordPress Resources Link
157
 
158
  = 1.2.4 =
159
  * Added ufbl_time_format filter for time format change
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.2.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.2.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
@@ -159,12 +159,6 @@ if ( !class_exists( 'UFBL_Class' ) ) {
159
  }
160
  }
161
 
162
- /**
163
- * Forms Builder
164
- */
165
- function forms_builder() {
166
-
167
- }
168
 
169
  /**
170
  * Plugin on activation tasks
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.2.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.2.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
159
  }
160
  }
161
 
 
 
 
 
 
 
162
 
163
  /**
164
  * Plugin on activation tasks