User Registration – Custom Registration Form, Login Form And User Profile For WordPress - Version 1.1.1

Version Description

  • 03/10/2017 =
  • Fix - Denied email trigger fixed
Download this release

Release Info

Developer wpeverest
Plugin Icon 128x128 User Registration – Custom Registration Form, Login Form And User Profile For WordPress
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1.0 to 1.1.1

includes/functions-ur-core.php CHANGED
@@ -756,6 +756,8 @@ function ur_get_form_setting_by_key( $form_id, $meta_key, $default = '' ) {
756
  */
757
  function ur_get_user_approval_status( $user_id ) {
758
 
 
 
759
  $login_option = get_option( 'user_registration_general_setting_login_options', '' );
760
 
761
  if ( 'admin_approval' === $login_option ) {
@@ -767,12 +769,12 @@ function ur_get_user_approval_status( $user_id ) {
767
  return $user_status;
768
  }
769
 
770
- return true;
771
 
772
 
773
  }
774
 
775
- return true;
776
 
777
  }
778
 
756
  */
757
  function ur_get_user_approval_status( $user_id ) {
758
 
759
+ $user_status = 1;
760
+
761
  $login_option = get_option( 'user_registration_general_setting_login_options', '' );
762
 
763
  if ( 'admin_approval' === $login_option ) {
769
  return $user_status;
770
  }
771
 
772
+ return $user_status;
773
 
774
 
775
  }
776
 
777
+ return $user_status;
778
 
779
  }
780
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: WPEverest
3
  Tags: user registration, registration, profile-builder, user profile, form, registration form, login form
4
  Requires at least: 4.0
5
  Tested up to: 4.8
6
- Stable tag: 1.1.0
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -73,11 +73,14 @@ Yes, the plugin is designed to work with any themes that have been coded followi
73
  11. Shortcode
74
 
75
  == Changelog ==
 
 
 
76
  = 1.1.0 - 19/09/2017 =
77
  * Feature - Redirect URL
78
  * Feature - Number and date field added
79
  * Feature - logger added
80
- * Feature - Formwise template
81
  * Fix - Frontend form javascript validation issue fixed
82
  * Fix - My account tab issue fixed
83
  * Deprecated - Administrator from prevent dashboard access
3
  Tags: user registration, registration, profile-builder, user profile, form, registration form, login form
4
  Requires at least: 4.0
5
  Tested up to: 4.8
6
+ Stable tag: 1.1.1
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
73
  11. Shortcode
74
 
75
  == Changelog ==
76
+ = 1.1.1 - 03/10/2017 =
77
+ * Fix - Denied email trigger fixed
78
+
79
  = 1.1.0 - 19/09/2017 =
80
  * Feature - Redirect URL
81
  * Feature - Number and date field added
82
  * Feature - logger added
83
+ * Feature - Formwise template
84
  * Fix - Frontend form javascript validation issue fixed
85
  * Fix - My account tab issue fixed
86
  * Deprecated - Administrator from prevent dashboard access
user-registration.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: User Registration
4
  * Plugin URI: https://wpeverest.com/plugins/user-registration
5
  * Description: Drag and Drop user registration and login form builder.
6
- * Version: 1.1.0
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Requires at least: 4.0
@@ -35,7 +35,7 @@ final class UserRegistration {
35
  * Plugin version.
36
  * @var string
37
  */
38
- public $version = '1.1.0';
39
 
40
  /**
41
  * Session instance.
3
  * Plugin Name: User Registration
4
  * Plugin URI: https://wpeverest.com/plugins/user-registration
5
  * Description: Drag and Drop user registration and login form builder.
6
+ * Version: 1.1.1
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Requires at least: 4.0
35
  * Plugin version.
36
  * @var string
37
  */
38
+ public $version = '1.1.1';
39
 
40
  /**
41
  * Session instance.