Version Description
- Error message shown on plugin activation issue has been fixed.
Download this release
Release Info
Developer | Access Keys |
Plugin | Contact Form for WordPress – Ultimate Form Builder Lite |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- readme.txt +4 -1
- ultimate-form-builder-lite.php +12 -14
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,9 @@ Once you install the plugin , you can check some general documentation about how
|
|
164 |
10. Backend Entry Detail
|
165 |
|
166 |
== Changelog ==
|
|
|
|
|
|
|
167 |
= 1.4.3 =
|
168 |
* Added Documentation and other informational links to the plugin.
|
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.4
|
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.4 =
|
168 |
+
* Error message shown on plugin activation issue has been fixed.
|
169 |
+
|
170 |
= 1.4.3 =
|
171 |
* Added Documentation and other informational links to the plugin.
|
172 |
|
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
|
@@ -115,18 +115,16 @@ if ( !class_exists( 'UFBL_Class' ) ) {
|
|
115 |
add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) );
|
116 |
}
|
117 |
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
}
|
129 |
-
}
|
130 |
|
131 |
function redirect_to_site(){
|
132 |
if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'ufbl-doclinks' ) {
|
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.4
|
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.4' ); //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
|
115 |
add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) );
|
116 |
}
|
117 |
|
118 |
+
function admin_footer_text( $text ){
|
119 |
+
if ( isset( $_GET[ 'page' ] ) ){
|
120 |
+
$link = 'https://wordpress.org/support/plugin/ultimate-form-builder-lite/reviews/#new-post';
|
121 |
+
$pro_link = 'https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Fultimate-form-builder%2F14644208';
|
122 |
+
if($_GET[ 'page' ] == 'ufbl' || $_GET['page'] == 'ufbl-new-form' || $_GET['page'] == 'ufbl-new-form' || $_GET['page'] =='ufbl-form-entries' || $_GET['page'] =='ufbl-how-to-use' || $_GET['page'] =='ufbl-about'){
|
123 |
+
$text = 'Enjoyed Ultimate Form Builder Lite? <a href="' . $link . '" target="_blank">Please leave us a ★★★★★ rating</a> We really appreciate your support! | Try premium version of <a href="' . $pro_link . '" target="_blank">Ultimate Form Builder</a> - more features, more power!';
|
124 |
+
}
|
125 |
+
}
|
126 |
+
return $text;
|
127 |
+
}
|
|
|
|
|
128 |
|
129 |
function redirect_to_site(){
|
130 |
if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'ufbl-doclinks' ) {
|