Custom Login Page Customizer | LoginPress - Version 1.1.20

Version Description

  • 2019-02-21 =
  • Enhancement: Add themes details in debugging log file.
  • Compatibility: Compatible with WordPress 5.1
Download this release

Release Info

Developer hiddenpearls
Plugin Icon 128x128 Custom Login Page Customizer | LoginPress
Version 1.1.20
Comparing to
See all releases

Code changes from version 1.1.19 to 1.1.20

classes/class-loginpress-log.php CHANGED
@@ -55,12 +55,14 @@ class LoginPress_Log_Info {
55
  // Pro Plugin Configuration
56
  if ( class_exists( 'LoginPress_Pro' ) ) {
57
 
58
- $enable_repatcha = ( isset( $loginpress_setting['enable_repatcha'] ) ) ? $loginpress_setting['enable_repatcha'] : 'Off';
59
- $loginpress_preset = get_option( 'customize_presets_settings', 'default1' );
 
60
 
61
  $html .= "\n" . '-- LoginPress Pro Configuration --' . "\n\n";
62
  $html .= 'Plugin Version: ' . LOGINPRESS_PRO_VERSION . "\n";
63
  $html .= 'LoginPress Template: ' . $loginpress_preset . "\n";
 
64
  $html .= 'Google Repatcha Status: ' . $enable_repatcha . "\n";
65
 
66
  if ( 'on' == $enable_repatcha ) {
55
  // Pro Plugin Configuration
56
  if ( class_exists( 'LoginPress_Pro' ) ) {
57
 
58
+ $enable_repatcha = ( isset( $loginpress_setting['enable_repatcha'] ) ) ? $loginpress_setting['enable_repatcha'] : 'Off';
59
+ $loginpress_preset = get_option( 'customize_presets_settings', 'default1' );
60
+ $license_key = LoginPress_Pro::get_registered_license_status();
61
 
62
  $html .= "\n" . '-- LoginPress Pro Configuration --' . "\n\n";
63
  $html .= 'Plugin Version: ' . LOGINPRESS_PRO_VERSION . "\n";
64
  $html .= 'LoginPress Template: ' . $loginpress_preset . "\n";
65
+ $html .= 'License Status: ' . $license_key . "\n";
66
  $html .= 'Google Repatcha Status: ' . $enable_repatcha . "\n";
67
 
68
  if ( 'on' == $enable_repatcha ) {
loginpress.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: https://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
- * Version: 1.1.19
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
@@ -22,7 +22,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
22
  /**
23
  * @var string
24
  */
25
- public $version = '1.1.19';
26
 
27
  /**
28
  * @var The single instance of the class
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: https://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
+ * Version: 1.1.20
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
22
  /**
23
  * @var string
24
  */
25
+ public $version = '1.1.20';
26
 
27
  /**
28
  * @var The single instance of the class
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Custom Login Page Customizer | LoginPress ===
2
  Requires at least: 4.0
3
- Tested up to: 5.0
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
- Tags: wp-login, custom wp-login, login customizer, custom login, custom login logo, login customizer, custom login page, login error, login page style, loginpress
7
- Stable tag: 1.1.19
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -205,7 +205,11 @@ Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpre
205
 
206
  == Changelog ==
207
 
208
- = 1.1.19 - 2018-01-22 =
 
 
 
 
209
  * Enhancement: Code refactoring.
210
  * Compatibility: Compatible with WordPress 5.0
211
 
@@ -448,5 +452,5 @@ Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpre
448
 
449
  == Upgrade Notice ==
450
 
451
- = 1.1.19 =
452
  * Important Release, upgrade immediately.
1
  === Custom Login Page Customizer | LoginPress ===
2
  Requires at least: 4.0
3
+ Tested up to: 5.1
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
+ Tags: wp-login, login, login customizer, custom login, wordpress login, login customizer, custom login page, login error, login page style, loginpress
7
+ Stable tag: 1.1.20
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
205
 
206
  == Changelog ==
207
 
208
+ = 1.1.20 - 2019-02-21 =
209
+ * Enhancement: Add themes details in debugging log file.
210
+ * Compatibility: Compatible with WordPress 5.1
211
+
212
+ = 1.1.19 - 2019-01-22 =
213
  * Enhancement: Code refactoring.
214
  * Compatibility: Compatible with WordPress 5.0
215
 
452
 
453
  == Upgrade Notice ==
454
 
455
+ = 1.1.20 =
456
  * Important Release, upgrade immediately.