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

Version Description

  • Provided notes for from name and from email field
  • Fixed small layout fix for email settings
Download this release

Release Info

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

Code changes from version 1.3.0 to 1.3.1

inc/views/backend/boxes/email-settings.php CHANGED
@@ -32,12 +32,14 @@ $email_settings = $form_detail['email_settings'];
32
  <label class="ufbl-field"><?php _e( 'From Email', 'ultimate-form-builder-lite' ); ?></label>
33
  <div class="ufbl-field">
34
  <input type="text" name="email_settings[from_email]" placeholder='test@xyz.com' value="<?php echo esc_attr( $email_settings['from_email'] ); ?>"/>
 
35
  </div>
36
  </div>
37
  <div class="ufbl-field-wrap">
38
  <label class="ufbl-field"><?php _e( 'From Name', 'ultimate-form-builder-lite' ); ?></label>
39
  <div class="ufbl-field">
40
  <input type="text" name="email_settings[from_name]" placeholder='John Corner' value="<?php echo esc_attr( $email_settings['from_name'] ); ?>"/>
 
41
  </div>
42
  </div>
43
  <div class="ufbl-field-wrap">
@@ -51,5 +53,6 @@ $email_settings = $form_detail['email_settings'];
51
  <a href="<?php echo site_url( '?ufbl_form_preview=true&ufbl_form_id=' . $form_row['form_id'] ); ?>" target="_blank"><input type="button" class="button-primary" value="<?php _e( 'Preview', 'ultimate-form-builder-lite' ); ?>"/></a>
52
  <div class="ufbl-field-note"><?php _e( 'Note: Please save form before preview.', 'ultimate-form-builder-lite' ); ?></div>
53
  </div>
 
54
  </div>
55
 
32
  <label class="ufbl-field"><?php _e( 'From Email', 'ultimate-form-builder-lite' ); ?></label>
33
  <div class="ufbl-field">
34
  <input type="text" name="email_settings[from_email]" placeholder='test@xyz.com' value="<?php echo esc_attr( $email_settings['from_email'] ); ?>"/>
35
+ <div class="ufbl-field-note"><?php _e( 'Note: Please use name which doesn\'t resemble to real person from email. For example noreply@yourdomain.com', 'ultimate-form-builder-lite' ); ?></div>
36
  </div>
37
  </div>
38
  <div class="ufbl-field-wrap">
39
  <label class="ufbl-field"><?php _e( 'From Name', 'ultimate-form-builder-lite' ); ?></label>
40
  <div class="ufbl-field">
41
  <input type="text" name="email_settings[from_name]" placeholder='John Corner' value="<?php echo esc_attr( $email_settings['from_name'] ); ?>"/>
42
+ <div class="ufbl-field-note"><?php _e( 'Note: Please use name which doesn\'t resemble to real person from name. For example noreply, noname etc', 'ultimate-form-builder-lite' ); ?></div>
43
  </div>
44
  </div>
45
  <div class="ufbl-field-wrap">
53
  <a href="<?php echo site_url( '?ufbl_form_preview=true&ufbl_form_id=' . $form_row['form_id'] ); ?>" target="_blank"><input type="button" class="button-primary" value="<?php _e( 'Preview', 'ultimate-form-builder-lite' ); ?>"/></a>
54
  <div class="ufbl-field-note"><?php _e( 'Note: Please save form before preview.', 'ultimate-form-builder-lite' ); ?></div>
55
  </div>
56
+ <div class="ufbl-clear"></div>
57
  </div>
58
 
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.0
6
  Tested up to: 4.7
7
- Stable tag: 1.3.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -151,6 +151,10 @@ Once you install the plugin , you can check some general documentation about how
151
  10. Backend Entry Detail
152
 
153
  == Changelog ==
 
 
 
 
154
  = 1.3.0 =
155
  * Enqueued Font Awesome CSS locally as per WordPress Guidelines
156
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 4.0
6
  Tested up to: 4.7
7
+ Stable tag: 1.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
151
  10. Backend Entry Detail
152
 
153
  == Changelog ==
154
+ = 1.3.1 =
155
+ * Provided notes for from name and from email field
156
+ * Fixed small layout fix for email settings
157
+
158
  = 1.3.0 =
159
  * Enqueued Font Awesome CSS locally as per WordPress Guidelines
160
 
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.3.0
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.3.0' ); //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.3.1
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.3.1' ); //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