Version Description
- Added ufbl_form_template_count filter
- Updated trasnlation ready text for some missing text
Download this release
Release Info
Developer | Access Keys |
Plugin | Contact Form for WordPress – Ultimate Form Builder Lite |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
inc/views/backend/boxes/display-settings.php
CHANGED
@@ -45,8 +45,8 @@ $form_design = isset( $form_detail['form_design'] ) ? $form_detail['form_design'
|
|
45 |
<div class="ufbl-field">
|
46 |
|
47 |
<select name="form_design[form_template]" class="ufbl-form-template-dropdown">
|
48 |
-
<option value="ufbl-default-template" <?php selected( $form_design['form_template'], 'ufbl-default-template' );
|
49 |
-
<?php for ( $i = 1; $i <= 5; $i++ ) {
|
50 |
?>
|
51 |
<option value="ufbl-template-<?php echo $i; ?>" <?php selected( $form_design['form_template'], 'ufbl-template-' . $i ); ?>>Template <?php echo $i; ?></option>
|
52 |
<?php
|
45 |
<div class="ufbl-field">
|
46 |
|
47 |
<select name="form_design[form_template]" class="ufbl-form-template-dropdown">
|
48 |
+
<option value="ufbl-default-template" <?php selected( $form_design['form_template'], 'ufbl-default-template' ); ?>><?php _e('Default Template','ultimate-form-builder-lite');?></option>
|
49 |
+
<?php for ( $i = 1; $i <= apply_filters('ufbl_form_template_count',5); $i++ ) {
|
50 |
?>
|
51 |
<option value="ufbl-template-<?php echo $i; ?>" <?php selected( $form_design['form_template'], 'ufbl-template-' . $i ); ?>>Template <?php echo $i; ?></option>
|
52 |
<?php
|
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: 3.8
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -146,6 +146,10 @@ Once you install the plugin , you can check some general documentation about how
|
|
146 |
10. Backend Entry Detail
|
147 |
|
148 |
== Changelog ==
|
|
|
|
|
|
|
|
|
149 |
= 1.2.2 =
|
150 |
* Updated form modified date and form entry submission date to match the WordPress Timezone
|
151 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.2.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
146 |
10. Backend Entry Detail
|
147 |
|
148 |
== Changelog ==
|
149 |
+
= 1.2.3 =
|
150 |
+
* Added ufbl_form_template_count filter
|
151 |
+
* Updated trasnlation ready text for some missing text
|
152 |
+
|
153 |
= 1.2.2 =
|
154 |
* Updated form modified date and form entry submission date to match the WordPress Timezone
|
155 |
|
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.
|
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.
|
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.2.3
|
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.3' ); //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
|