Version Description
- Plugin compatibility check with Elementor and site origin plugin
- Issue on Column while implementing with elementor plugin using shortcode fixed.
Download this release
Release Info
Developer | Access Keys |
Plugin | Contact Form for WordPress – Ultimate Form Builder Lite |
Version | 1.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.4.1 to 1.4.2
- readme.txt +5 -1
- ultimate-form-builder-lite.php +7 -5
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: contact form, form builder, form, forms, contact forms, enquiry forms, for
|
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.0
|
7 |
-
Stable tag: 1.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -164,6 +164,10 @@ Once you install the plugin , you can check some general documentation about how
|
|
164 |
10. Backend Entry Detail
|
165 |
|
166 |
== Changelog ==
|
|
|
|
|
|
|
|
|
167 |
= 1.4.1 =
|
168 |
* Few Code refinement on timezone issues fixed.
|
169 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.0
|
7 |
+
Stable tag: 1.4.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
164 |
10. Backend Entry Detail
|
165 |
|
166 |
== Changelog ==
|
167 |
+
= 1.4.2 =
|
168 |
+
* Plugin compatibility check with Elementor and site origin plugin
|
169 |
+
* Issue on Column while implementing with elementor plugin using shortcode fixed.
|
170 |
+
|
171 |
= 1.4.1 =
|
172 |
* Few Code refinement on timezone issues fixed.
|
173 |
|
ultimate-form-builder-lite.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate Form Builder Lite
|
4 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
|
5 |
Description: A plugin to build any type of forms
|
6 |
-
Version: 1.4.
|
7 |
Author: AccessPress Themes
|
8 |
Author URI: http://accesspressthemes.com
|
9 |
License: GPL2
|
@@ -16,7 +16,7 @@
|
|
16 |
* Necessary Constants for plugin
|
17 |
*/
|
18 |
global $wpdb;
|
19 |
-
defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.4.
|
20 |
defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
|
21 |
defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
|
22 |
defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
|
@@ -322,9 +322,11 @@ if ( !class_exists( 'UFBL_Class' ) ) {
|
|
322 |
function generate_form( $form_row ) {
|
323 |
$data['form_row'] = $form_row;
|
324 |
ob_start();
|
325 |
-
|
326 |
-
|
327 |
-
|
|
|
|
|
328 |
return $form_html;
|
329 |
}
|
330 |
|
3 |
Plugin Name: Ultimate Form Builder Lite
|
4 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
|
5 |
Description: A plugin to build any type of forms
|
6 |
+
Version: 1.4.2
|
7 |
Author: AccessPress Themes
|
8 |
Author URI: http://accesspressthemes.com
|
9 |
License: GPL2
|
16 |
* Necessary Constants for plugin
|
17 |
*/
|
18 |
global $wpdb;
|
19 |
+
defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.4.2' ); //plugin version
|
20 |
defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
|
21 |
defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
|
22 |
defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
|
322 |
function generate_form( $form_row ) {
|
323 |
$data['form_row'] = $form_row;
|
324 |
ob_start();
|
325 |
+
$this->library->load_view( 'frontend/front-form', $data );
|
326 |
+
$form_html = ob_get_contents();
|
327 |
+
ob_end_clean();
|
328 |
+
//ob_end_flush();
|
329 |
+
//ob_clean();
|
330 |
return $form_html;
|
331 |
}
|
332 |
|