Custom Login Page Customizer | LoginPress - Version 1.5.9

Version Description

2021-11-26 = * BugFix: Only administrator can view the review banner now.

Download this release

Release Info

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

Code changes from version 1.5.8 to 1.5.9

classes/class-loginpress-notifications.php CHANGED
@@ -33,7 +33,7 @@ if ( ! class_exists( 'LoginPress_Notification' ) ) :
33
  private function _hooks() {
34
  add_action( 'admin_init', array( $this, 'loginpress_review_notice' ) );
35
  // add_action( 'admin_init' , array( $this, 'loginpress_addon_notice' ) );
36
- // add_action( 'admin_init', array( $this, 'loginpress_friday_sale_notice' ) );
37
  // add_action( 'admin_init', array( $this, 'loginpress_appsumo_notice' ) );
38
  }
39
 
@@ -61,10 +61,10 @@ if ( ! class_exists( 'LoginPress_Notification' ) ) :
61
  endif;
62
 
63
  // 1296000 = 15 Days in seconds.
64
- if ( time() - $activation_time > 1296000 ) :
65
 
66
- wp_enqueue_style( 'loginpress_review_stlye', plugins_url( '../css/style-review.css', __FILE__ ), array(), LOGINPRESS_VERSION );
67
- add_action( 'admin_notices' , array( $this, 'loginpress_review_notice_message' ) );
68
  endif;
69
 
70
  }
@@ -157,7 +157,7 @@ if ( ! class_exists( 'LoginPress_Notification' ) ) :
157
  <a href="<?php echo $dismiss_url ?>" class="notice-dismiss" ><span class="screen-reader-text"></span></a>
158
  <a href="https://wpbrigade.com/wordpress/plugins/loginpress/addons/?utm_source=loginpress-lite&utm_medium=addons-notice-banner&utm_campaign=pro-upgrade" class="loginpress-addon-notice-link" target="_blank">
159
  <div class="loginpress-alert-thumbnail">
160
- <img src="<?php echo plugins_url( '../img/notification_logo.svg', __FILE__ ) ?>" alt="">
161
  </div>
162
  <div class="loginpress-alert-text">
163
  <h3><?php _e( 'Introducing LoginPress Addons!', 'loginpress' ) ?></h3>
@@ -228,21 +228,15 @@ if ( ! class_exists( 'LoginPress_Notification' ) ) :
228
  */
229
  public function loginpress_friday_sale_notice() {
230
 
231
- $this->loginpress_deals_notice_dismis( 'loginpress-friday-sale-nonce', 'loginpress_friday_sale_dismiss' );
232
 
233
  $activation_time = get_site_option( 'loginpress_friday_sale_active_time' );
234
- $addon_dismissal = get_site_option( 'loginpress_friday_sale_dismiss' );
235
 
236
  if ( 'yes' == $addon_dismissal ) return;
237
 
238
- if ( ! $activation_time ) :
239
-
240
- $activation_time = time();
241
- add_site_option( 'loginpress_friday_sale_active_time', $activation_time );
242
- endif;
243
-
244
  if ( ! has_action( 'loginpress_pro_add_template' ) ) :
245
- // add_action( 'admin_notices' , array( $this, 'loginpress_friday_sale_notice_text' ) );
246
  // add_action( 'admin_notices', array( $this, 'new_loginpress_friday_sale_notice_text' ) ); // turn off on update 1.1.19
247
  endif;
248
  }
@@ -281,22 +275,22 @@ if ( ! class_exists( 'LoginPress_Notification' ) ) :
281
  public function loginpress_friday_sale_notice_text() {
282
 
283
  $scheme = ( wp_parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
284
- $url = $_SERVER['REQUEST_URI'] . $scheme . 'loginpress_friday_sale_dismiss=yes';
285
  $dismiss_url = wp_nonce_url( $url, 'loginpress-friday-sale-nonce' );
286
 
287
  wp_enqueue_style( 'loginpress_review_stlye', plugins_url( '../css/style-review.css', __FILE__ ), array(), LOGINPRESS_VERSION );
288
  ?>
289
  <div class="loginpress-alert-notice black_friday_notic">
290
  <a href="<?php echo $dismiss_url ?>" class="notice-dismiss" ><span class="screen-reader-text"></span></a>
291
- <a href="https://wpbrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=freepluginbanner&utm_campaign=early20" target="_blank">
292
  <div class="loginpress-alert-thumbnail">
293
- <img src="<?php echo plugins_url( '../img/notification_logo.svg', __FILE__ ) ?>" alt="">
294
  </div>
295
  <div class="loginpress-alert-text black_friday">
296
- <img src="<?php echo plugins_url( '../img/black-friday.png', __FILE__ ) ?>" alt="">
297
 
298
  <div class="loginpress-alert-button-section black_friday_sale_btn">
299
- <a href="https://wpbrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=freepluginbanner-button&utm_campaign=early20" class="loginpress-alert-button" target="_blank"><?php _e( 'FLAT 51% OFF', 'loginpress' ) ?></a>
300
  </div>
301
  </div>
302
  </a>
@@ -313,7 +307,7 @@ if ( ! class_exists( 'LoginPress_Notification' ) ) :
313
  function new_loginpress_friday_sale_notice_text() {
314
 
315
  $scheme = ( wp_parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
316
- $url = $_SERVER['REQUEST_URI'] . $scheme . 'loginpress_friday_sale_dismiss=yes';
317
  $dismiss_url = wp_nonce_url( $url, 'loginpress-friday-sale-nonce' );
318
 
319
  if ( current_user_can( 'install_plugins' ) && ! has_action( 'loginpress_pro_add_template' ) ) {
33
  private function _hooks() {
34
  add_action( 'admin_init', array( $this, 'loginpress_review_notice' ) );
35
  // add_action( 'admin_init' , array( $this, 'loginpress_addon_notice' ) );
36
+ add_action( 'admin_init', array( $this, 'loginpress_friday_sale_notice' ) );
37
  // add_action( 'admin_init', array( $this, 'loginpress_appsumo_notice' ) );
38
  }
39
 
61
  endif;
62
 
63
  // 1296000 = 15 Days in seconds.
64
+ if ( ( time() - $activation_time > 1296000 ) && current_user_can( 'manage_options' ) ) :
65
 
66
+ wp_enqueue_style( 'loginpress_review_stlye', plugins_url( '../css/style-review.css', __FILE__ ), array(), LOGINPRESS_VERSION );
67
+ add_action( 'admin_notices' , array( $this, 'loginpress_review_notice_message' ) );
68
  endif;
69
 
70
  }
157
  <a href="<?php echo $dismiss_url ?>" class="notice-dismiss" ><span class="screen-reader-text"></span></a>
158
  <a href="https://wpbrigade.com/wordpress/plugins/loginpress/addons/?utm_source=loginpress-lite&utm_medium=addons-notice-banner&utm_campaign=pro-upgrade" class="loginpress-addon-notice-link" target="_blank">
159
  <div class="loginpress-alert-thumbnail">
160
+ <img src="<?php echo plugins_url( '../img/loginpress_logo.svg', __FILE__ ) ?>" alt="">
161
  </div>
162
  <div class="loginpress-alert-text">
163
  <h3><?php _e( 'Introducing LoginPress Addons!', 'loginpress' ) ?></h3>
228
  */
229
  public function loginpress_friday_sale_notice() {
230
 
231
+ $this->loginpress_deals_notice_dismis( 'loginpress-friday-sale-nonce', 'loginpress_friday_21_sale_dismiss' );
232
 
233
  $activation_time = get_site_option( 'loginpress_friday_sale_active_time' );
234
+ $addon_dismissal = get_site_option( 'loginpress_friday_21_sale_dismiss' );
235
 
236
  if ( 'yes' == $addon_dismissal ) return;
237
 
 
 
 
 
 
 
238
  if ( ! has_action( 'loginpress_pro_add_template' ) ) :
239
+ add_action( 'admin_notices' , array( $this, 'loginpress_friday_sale_notice_text' ) );
240
  // add_action( 'admin_notices', array( $this, 'new_loginpress_friday_sale_notice_text' ) ); // turn off on update 1.1.19
241
  endif;
242
  }
275
  public function loginpress_friday_sale_notice_text() {
276
 
277
  $scheme = ( wp_parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
278
+ $url = $_SERVER['REQUEST_URI'] . $scheme . 'loginpress_friday_21_sale_dismiss=yes';
279
  $dismiss_url = wp_nonce_url( $url, 'loginpress-friday-sale-nonce' );
280
 
281
  wp_enqueue_style( 'loginpress_review_stlye', plugins_url( '../css/style-review.css', __FILE__ ), array(), LOGINPRESS_VERSION );
282
  ?>
283
  <div class="loginpress-alert-notice black_friday_notic">
284
  <a href="<?php echo $dismiss_url ?>" class="notice-dismiss" ><span class="screen-reader-text"></span></a>
285
+ <a href="https://loginpress.pro/black-friday/?utm_source=loginpress-lite&utm_medium=freepluginbanner&utm_campaign=blackfriday2021" target="_blank">
286
  <div class="loginpress-alert-thumbnail">
287
+ <img src="<?php echo plugins_url( '../img/loginpress_logo.svg', __FILE__ ) ?>" alt="">
288
  </div>
289
  <div class="loginpress-alert-text black_friday">
290
+ <img src="<?php echo plugins_url( '../img/black-friday.png', __FILE__ ) ?>" alt="Black Friday 2021">
291
 
292
  <div class="loginpress-alert-button-section black_friday_sale_btn">
293
+ <a href="https://loginpress.pro/black-friday/?utm_source=loginpress-lite&utm_medium=freepluginbanner-button&utm_campaign=blackfriday2021" class="loginpress-alert-button" target="_blank"><?php _e( 'FLAT 50% OFF', 'loginpress' ) ?></a>
294
  </div>
295
  </div>
296
  </a>
307
  function new_loginpress_friday_sale_notice_text() {
308
 
309
  $scheme = ( wp_parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
310
+ $url = $_SERVER['REQUEST_URI'] . $scheme . 'loginpress_friday_21_sale_dismiss=yes';
311
  $dismiss_url = wp_nonce_url( $url, 'loginpress-friday-sale-nonce' );
312
 
313
  if ( current_user_can( 'install_plugins' ) && ! has_action( 'loginpress_pro_add_template' ) ) {
css/style-review.css CHANGED
@@ -224,6 +224,9 @@ font-weight: bold;
224
  .loginpress-notification.loginpress-notice-success .loginpress-notification-close:before{
225
  color: #21573a;
226
  }
 
 
 
227
  @media screen and (max-width: 1300px) {
228
  .loginpress-alert-thumbnail{
229
  width: 200px;
@@ -267,7 +270,7 @@ font-weight: bold;
267
  color: #fff;
268
  }
269
  .loginpress-alert-notice .notice-dismiss:before{
270
- color: #fff;
271
  }
272
  .black_friday_sale_btn .loginpress-alert-button{
273
  width: 310px;
224
  .loginpress-notification.loginpress-notice-success .loginpress-notification-close:before{
225
  color: #21573a;
226
  }
227
+ .loginpress-alert-notice .notice-dismiss:before{
228
+ color: #ececec !important;
229
+ }
230
  @media screen and (max-width: 1300px) {
231
  .loginpress-alert-thumbnail{
232
  width: 200px;
270
  color: #fff;
271
  }
272
  .loginpress-alert-notice .notice-dismiss:before{
273
+ color: #ffffff !important;
274
  }
275
  .black_friday_sale_btn .loginpress-alert-button{
276
  width: 310px;
img/loginpress_logo.svg ADDED
@@ -0,0 +1 @@
 
1
+ <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="40.295" viewBox="0 0 200 40.295"><g id="Logo" transform="translate(2107.579 -1437.224)"><g id="Group_19" data-name="Group 19" transform="translate(-2107.579 1437.224)"><g id="LoginPress-logo-divid-logo"><path id="Path_40" data-name="Path 40" d="M38.949,70.2H20.9v9.25H38.949l6.822-4.639Z" transform="translate(-14.643 -49.185)" fill="#29c3ff"></path><path id="Path_41" data-name="Path 41" d="M0,60.2v6.706a5.545,5.545,0,0,0,5.538,5.538H9.25V60.2Z" transform="translate(0 -42.178)" fill="#28296a"></path><path id="Path_42" data-name="Path 42" d="M73.42,97.6l-4.52,4.52,6.556,6.556,8.652-8.652-2.485-1.976Z" transform="translate(-48.274 -68.382)" fill="#f6366a"></path><rect id="Rectangle_277" data-name="Rectangle 277" width="9.25" height="21.015" fill="#f6366a"></rect><path id="Path_43" data-name="Path 43" d="M85.864,83.176,80.5,88.542l10.712.061Z" transform="translate(-56.401 -58.276)" fill="#28296a"></path><path id="Path_44" data-name="Path 44" d="M84.078,45.422,75.456,36.8,68.9,43.326l3.922,3.922,8.8.21Z" transform="translate(-48.274 -25.783)" fill="#29c3ff"></path><path id="Path_45" data-name="Path 45" d="M117.8,98.322h0l3.922-3.922-2.006,2.006Z" transform="translate(-82.535 -66.14)" fill="#29c3ff"></path><path id="Path_46" data-name="Path 46" d="M89.75,70.2H80.5l4.61,4.64Z" transform="translate(-56.401 -49.185)" fill="#0795ff"></path><path id="Path_47" data-name="Path 47" d="M109.1,98.9l2.6,2.575,2.485-2.455Z" transform="translate(-76.439 -69.293)" fill="#28296a"></path><path id="Path_48" data-name="Path 48" d="M114.229,66.255,111.775,63.8,109.2,66.375Z" transform="translate(-76.509 -44.7)" fill="#28296a"></path><path id="Path_49" data-name="Path 49" d="M106.378,72.206,104.372,70.2H100.54L95.9,74.84l4.64,4.64h3.832l2.006-2.006A3.7,3.7,0,0,0,106.378,72.206Z" transform="translate(-67.191 -49.185)" fill="#061f6a"></path></g></g><g id="Group_26" data-name="Group 26" transform="translate(-2054.036 1442.533)"><path id="Path_2" data-name="Path 2" d="M344.2,452.231h4.464v16.175a.677.677,0,0,0,.677.677h8.725v3.843H347.251a3.051,3.051,0,0,1-3.051-3.051Z" transform="translate(-344.2 -451.551)" fill="#8c8f94"></path><path id="Path_3" data-name="Path 3" d="M394.069,478.484a7.866,7.866,0,1,1,7.864,7.686A7.518,7.518,0,0,1,394.069,478.484Zm11.589,0c0-2.484-1.508-4.169-3.725-4.169s-3.725,1.685-3.725,4.169c0,2.454,1.508,4.139,3.725,4.139S405.658,480.938,405.658,478.484Z" transform="translate(-379.14 -464.559)" fill="#8c8f94"></path><path id="Path_4" data-name="Path 4" d="M467.557,471.033v15.788c0,3.1-2.247,5.144-5.617,5.144H454.43v-3.222h6.859a2.189,2.189,0,0,0,2.158-2.365v-1.951a4.959,4.959,0,0,1-4.08,1.744c-4.405,0-7.037-3.045-7.037-7.686s2.631-7.687,6.977-7.687a5.185,5.185,0,0,1,4.109,1.715v-1.478Zm-3.873,7.451c0-2.513-1.449-4.169-3.666-4.169-2.188,0-3.636,1.655-3.636,4.169s1.449,4.139,3.636,4.139C462.235,482.623,463.684,481,463.684,478.484Z" transform="translate(-419.96 -464.559)" fill="#8c8f94"></path><g id="Group_3" data-name="Group 3" transform="translate(50.729 0)"><rect id="Rectangle_4" data-name="Rectangle 4" width="4.376" height="4.346" rx="2.173" fill="#8c8f94"></rect><rect id="Rectangle_5" data-name="Rectangle 5" width="4.139" height="14.901" transform="translate(0.118 6.475)" fill="#8c8f94"></rect></g><path id="Path_5" data-name="Path 5" d="M596.9,452.231h8.514c4.405,0,6.977,2.72,6.977,6.534,0,3.784-2.572,6.534-6.977,6.534h-4.05v7.628H596.9Zm8.248,9.372a2.84,2.84,0,1,0,0-5.676h-3.784V461.6Z" transform="translate(-521.252 -451.551)" fill="#8c8f94"></path><path id="Path_6" data-name="Path 6" d="M706.029,480.878c-.591,3.223-3.43,5.292-7.1,5.292a7.471,7.471,0,0,1-7.657-7.716c0-3.784,2.306-7.657,7.362-7.657,5.262,0,7.361,3.873,7.361,7.273,0,.562-.03,1-.059,1.33h-10.7a3.575,3.575,0,0,0,3.7,3.4c1.656,0,2.75-.651,3.075-1.922ZM695.3,476.8h6.593a3.082,3.082,0,0,0-3.252-2.986C696.775,473.813,695.651,474.729,695.3,476.8Z" transform="translate(-587.373 -464.559)" fill="#8c8f94"></path><path id="Path_7" data-name="Path 7" d="M746.761,480.908h3.548a2.461,2.461,0,0,0,2.72,2.158c1.271,0,2.158-.621,2.158-1.449,0-3.045-8.012-.059-8.012-6.327,0-2.631,2.276-4.494,5.322-4.494,3.577,0,6,1.922,6.15,4.849h-3.577a2.366,2.366,0,0,0-2.454-1.951c-1.153,0-1.951.5-1.951,1.449,0,3.045,8.16-.414,8.16,6.327,0,2.838-2.306,4.7-5.795,4.7C749.392,486.171,746.909,484.131,746.761,480.908Z" transform="translate(-626.248 -464.559)" fill="#8c8f94"></path><path id="Path_8" data-name="Path 8" d="M793.131,480.908h3.548a2.461,2.461,0,0,0,2.72,2.158c1.271,0,2.158-.621,2.158-1.449,0-3.045-8.012-.059-8.012-6.327,0-2.631,2.276-4.494,5.322-4.494,3.577,0,6,1.922,6.15,4.849h-3.577a2.366,2.366,0,0,0-2.454-1.951c-1.153,0-1.951.5-1.951,1.449,0,3.045,8.159-.414,8.159,6.327,0,2.838-2.306,4.7-5.794,4.7C795.762,486.171,793.279,484.131,793.131,480.908Z" transform="translate(-658.736 -464.559)" fill="#8c8f94"></path><path id="Path_9" data-name="Path 9" d="M552.715,476.647v9.283h-4.139v-8.467a2.854,2.854,0,1,0-5.707,0v8.467H538.73v-9.283c0-3.43,2.185-5.854,5.558-5.854h2.87C550.53,470.793,552.715,473.217,552.715,476.647Z" transform="translate(-480.494 -464.556)" fill="#8c8f94"></path><path id="Path_10" data-name="Path 10" d="M663.225,471.587H660.73a5.369,5.369,0,0,0-5.369,5.369v9.532H659.5v-7.243c0-2.542.917-4.228,2.957-4.228h2.454v-3.43Z" transform="translate(-562.21 -465.112)" fill="#8c8f94"></path></g></g></svg>
img/notification_logo.svg DELETED
@@ -1,166 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- width="1031.7px" height="246.1px" viewBox="36 157.9 1031.7 246.1" style="enable-background:new 36 157.9 1031.7 246.1;"
5
- xml:space="preserve">
6
- <style type="text/css">
7
- .st0{fill:#B5D1FF;}
8
- .st1{fill:#1A5FA4;}
9
- .st2{fill:#1B62A7;}
10
- .st3{fill:#F4F5F5;}
11
- .st4{fill:#DDE9EE;}
12
- .st5{fill:#F9C71A;}
13
- .st6{fill:#F0A422;}
14
- .st7{fill:#448AFF;stroke:#1B62A7;stroke-width:2;stroke-miterlimit:10;}
15
- .st8{fill:#1B62A7;stroke:#1B62A7;stroke-miterlimit:10;}
16
- .st9{fill:#F0A422;stroke:#1B62A7;stroke-width:2;stroke-miterlimit:10;}
17
- .st10{fill:#1A61A7;}
18
- .st11{fill:#EFA20E;}
19
- .st12{fill:#DDE9EF;}
20
- .st13{fill:#F0A422;stroke:#1B62A7;stroke-miterlimit:10;}
21
- .st14{fill:#F9C50F;}
22
- .st15{fill:#2561A3;}
23
- .st16{enable-background:new ;}
24
- .st17{fill:#FFFFFF;}
25
- </style>
26
- <path id="XMLID_13_" class="st0" d="M224.1,226.9c0,0-14-12.1-8.8-28.7c5.2-16.7,31.7-40.3-31.7-40.3S30.2,157.6,36.3,269.2
27
- c4.6,84,11.5,96.3,23.5,96.3c14-0.1,32.7-0.5,48.7-16.6c13.8-13.9,23.8-12.4,82.7-24.2c79.5-16,95.9-37,95.9-53
28
- s-24.9-24.6-37.8-30.5C236.5,235.3,224.1,226.9,224.1,226.9z"/>
29
- <ellipse id="XMLID_23_" class="st1" cx="145.8" cy="333.4" rx="103.5" ry="3.8"/>
30
- <g id="XMLID_18_">
31
- <path id="XMLID_237_" class="st2" d="M205.5,325.6H45.1c-3.2,0-5.7-2.5-5.7-5.7v-138c0-3.2,2.5-5.7,5.7-5.7h160.5
32
- c3.2,0,5.7,2.5,5.7,5.7V320C211.3,323.1,208.8,325.6,205.5,325.6z"/>
33
- <path id="XMLID_236_" class="st3" d="M200.2,324.3H45.9c-2.9,0-5-2.3-5-5V182.9c0-2.9,2.3-5,5-5h154.3c2.4,0,4.4,2,4.4,4.4V320
34
- C204.6,322.3,202.7,324.3,200.2,324.3z"/>
35
- <path id="XMLID_235_" class="st4" d="M200.5,179h-4.2L42.2,318.1c0,4,2.2,4.6,4.4,4.6h153.2c1.8,0,3.4-1.5,3.4-3.4V181.6
36
- C203.1,180.3,202,179,200.5,179z"/>
37
- <g id="XMLID_233_">
38
- <path id="XMLID_234_" class="st5" d="M203.1,199.7H42.3v-16.6c0-2.2,1.8-4,4-4h152.4c2.4,0,4.4,2,4.4,4.4L203.1,199.7L203.1,199.7
39
- z"/>
40
- </g>
41
- <g id="XMLID_229_">
42
- <circle id="XMLID_232_" class="st2" cx="65.1" cy="189.3" r="4.1"/>
43
- <circle id="XMLID_231_" class="st2" cx="52.3" cy="189.3" r="4.1"/>
44
- <circle id="XMLID_230_" class="st2" cx="78.1" cy="189.3" r="4.1"/>
45
- </g>
46
- <path id="XMLID_228_" class="st6" d="M200.4,179H196l-23.2,20.5H203v-17.7C203.1,180.3,202,179,200.4,179z"/>
47
- <rect id="XMLID_227_" x="42.3" y="199.7" class="st2" width="161" height="1.5"/>
48
- <path id="XMLID_2_" class="st7" d="M130.2,238.3H67.3c-6,0-10.9-4.9-10.9-10.9l0,0c0-6,4.9-10.9,10.9-10.9h62.9
49
- c6,0,10.9,4.9,10.9,10.9l0,0C141.1,233.4,136.2,238.3,130.2,238.3z"/>
50
- <path id="XMLID_3_" class="st8" d="M108.1,230.1H67c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7h41.1c1.5,0,2.7,1.2,2.7,2.7
51
- l0,0C110.8,228.9,109.6,230.1,108.1,230.1z"/>
52
- <path id="XMLID_4_" class="st7" d="M130.2,268.6H67.3c-6,0-10.9-4.9-10.9-10.9l0,0c0-6,4.9-10.9,10.9-10.9h62.9
53
- c6,0,10.9,4.9,10.9,10.9l0,0C141.1,263.7,136.2,268.6,130.2,268.6z"/>
54
- <path id="XMLID_5_" class="st9" d="M130.2,298.9h-37c-6,0-10.9-4.9-10.9-10.9l0,0c0-6,4.9-10.9,10.9-10.9h37
55
- c6,0,10.9,4.9,10.9,10.9l0,0C141.1,294,136.2,298.9,130.2,298.9z"/>
56
- <path id="XMLID_7_" class="st8" d="M67,260.3L67,260.3c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7l0,0
57
- c1.5,0,2.7,1.2,2.7,2.7l0,0C69.6,259.2,68.4,260.3,67,260.3z"/>
58
- <path id="XMLID_8_" class="st8" d="M75.5,260.3L75.5,260.3c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7l0,0
59
- c1.5,0,2.7,1.2,2.7,2.7l0,0C78.1,259.2,76.9,260.3,75.5,260.3z"/>
60
- <path id="XMLID_9_" class="st8" d="M83.9,260.3L83.9,260.3c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7l0,0
61
- c1.5,0,2.7,1.2,2.7,2.7l0,0C86.6,259.2,85.4,260.3,83.9,260.3z"/>
62
- <path id="XMLID_10_" class="st8" d="M92.4,260.3L92.4,260.3c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7l0,0
63
- c1.5,0,2.7,1.2,2.7,2.7l0,0C95.1,259.2,93.9,260.3,92.4,260.3z"/>
64
- <path id="XMLID_11_" class="st8" d="M100.9,260.3L100.9,260.3c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7l0,0
65
- c1.5,0,2.7,1.2,2.7,2.7l0,0C103.6,259.2,102.4,260.3,100.9,260.3z"/>
66
- <path id="XMLID_12_" class="st8" d="M109.4,260.3L109.4,260.3c-1.5,0-2.7-1.2-2.7-2.7l0,0c0-1.5,1.2-2.7,2.7-2.7l0,0
67
- c1.5,0,2.7,1.2,2.7,2.7l0,0C112.1,259.2,110.9,260.3,109.4,260.3z"/>
68
- </g>
69
- <g id="XMLID_22_">
70
- <path id="XMLID_399_" class="st10" d="M206.3,207.9L206.3,207.9c-20.7,0-37.4,13.6-36.5,30.3v20.6H190v-19.5
71
- c0-6.3,6.3-11.5,14.1-11.5l0,0c7.8,0,14.1,5.2,14.1,11.5V277h-12.4v11.7h37.9v-50.5C243.7,221.5,226.9,207.9,206.3,207.9z"/>
72
- <path id="XMLID_398_" class="st11" d="M204.2,211L204.2,211c-17.9,0-32.4,11.8-32.4,26.3V257H188v-18.1c0-7.2,7.2-13.2,16.2-13.2
73
- l0,0c8.9,0,16.2,5.8,16.2,13.2v18.2V277v11.7h16.3v-51.3C236.7,222.8,222.1,211,204.2,211z"/>
74
- <path id="XMLID_397_" class="st10" d="M256,348.8h-98.6c-2.9,0-5.3-2.3-5.3-5.3v-75.7c0,0,0-0.1,0.1-0.1h109c0,0,0.1,0,0.1,0.1
75
- v75.6C261.3,346.5,258.9,348.8,256,348.8z"/>
76
- <path id="XMLID_365_" class="st3" d="M246.5,347.7h-88c-2.9,0-5.2-2.3-5.2-5.2v-73.6h98.5v73.5
77
- C251.7,345.3,249.4,347.7,246.5,347.7z"/>
78
- <path id="XMLID_364_" class="st12" d="M154.8,339.8c0,5.1,1.6,6.7,9.1,6.7h81.7c2.7,0,4.9-2.2,4.9-4.9v-70.7H249L154.8,339.8z"/>
79
- <path id="XMLID_14_" class="st13" d="M225.3,316.9h-45.6c-4.3,0-7.8-3.5-7.8-7.8v-1.7c0-4.3,3.5-7.8,7.8-7.8h45.6
80
- c4.3,0,7.8,3.5,7.8,7.8v1.7C233,313.4,229.6,316.9,225.3,316.9z"/>
81
- <path id="XMLID_15_" class="st14" d="M189.1,316.3h-8.2c-4.7,0-8.5-3.6-8.5-8l0,0c0-4.4,3.8-8,8.5-8h32L189.1,316.3z"/>
82
- <circle id="XMLID_6_" class="st8" cx="202.4" cy="308.3" r="4.3"/>
83
- <circle id="XMLID_17_" class="st8" cx="186" cy="308.3" r="4.3"/>
84
- <circle id="XMLID_16_" class="st8" cx="219.3" cy="308.3" r="4.3"/>
85
- </g>
86
- <g id="XMLID_24_">
87
- <g id="XMLID_28_">
88
- <path class="st15" d="M256.2,404H54.7c-10.2,0-18.5-8.3-18.5-18.6l0,0c0-10.2,8.3-18.6,18.5-18.6h201.5c10.2,0,18.5,8.3,18.5,18.6
89
- l0,0C274.5,395.7,266.2,404,256.2,404z"/>
90
- </g>
91
- <g id="XMLID_27_" class="st16">
92
- <path class="st17" d="M76.7,393.7v-18.2h3.1v15.6h8v2.6H76.7z"/>
93
- <path class="st17" d="M105.5,386.8c0,2.2-0.6,4-1.8,5.3c-1.2,1.3-2.9,1.9-5,1.9c-1.3,0-2.5-0.3-3.6-0.9c-1-0.6-1.8-1.4-2.4-2.5
94
- c-0.6-1.1-0.8-2.3-0.8-3.8c0-2.2,0.6-4,1.8-5.2c1.2-1.3,2.9-1.9,5-1.9c2.1,0,3.7,0.6,4.9,1.9C104.8,382.9,105.5,384.6,105.5,386.8
95
- z M95,386.8c0,3.2,1.2,4.8,3.7,4.8c2.4,0,3.6-1.6,3.6-4.8c0-3.1-1.2-4.7-3.7-4.7c-1.3,0-2.2,0.4-2.8,1.2
96
- C95.3,384.1,95,385.3,95,386.8z"/>
97
- <path class="st17" d="M123,379.9v1.6l-2.4,0.4c0.2,0.3,0.4,0.6,0.6,1.1c0.1,0.4,0.2,0.9,0.2,1.3c0,1.4-0.5,2.5-1.5,3.3
98
- c-1,0.8-2.4,1.2-4.2,1.2c-0.5,0-0.9,0-1.2-0.1c-0.7,0.4-1,0.8-1,1.4c0,0.3,0.2,0.6,0.5,0.7c0.3,0.2,0.9,0.2,1.7,0.2h2.5
99
- c1.6,0,2.8,0.3,3.6,1s1.2,1.6,1.2,2.8c0,1.6-0.7,2.8-2,3.6c-1.3,0.8-3.3,1.3-5.8,1.3c-2,0-3.4-0.3-4.5-1c-1-0.7-1.5-1.6-1.5-2.8
100
- c0-0.8,0.3-1.6,0.8-2.1c0.6-0.6,1.3-1,2.3-1.2c-0.4-0.2-0.7-0.4-1-0.8c-0.3-0.4-0.4-0.8-0.4-1.2c0-0.5,0.2-1,0.5-1.3
101
- c0.3-0.4,0.8-0.7,1.3-1.1c-0.7-0.3-1.3-0.8-1.8-1.5c-0.5-0.7-0.7-1.5-0.7-2.4c0-1.5,0.5-2.7,1.5-3.5c1-0.8,2.4-1.2,4.2-1.2
102
- c0.4,0,0.8,0,1.3,0.1c0.4,0.1,0.8,0.1,1,0.2H123z M111.8,395.8c0,0.6,0.3,1.1,0.9,1.5c0.6,0.3,1.4,0.5,2.5,0.5
103
- c1.7,0,2.9-0.2,3.7-0.7c0.8-0.5,1.2-1.1,1.2-1.8c0-0.6-0.2-1-0.7-1.3c-0.4-0.3-1.3-0.4-2.5-0.4h-2.3c-0.9,0-1.6,0.2-2.1,0.6
104
- C112,394.6,111.8,395.2,111.8,395.8z M113.1,384.4c0,0.9,0.2,1.5,0.7,2c0.5,0.5,1.1,0.7,2,0.7c1.8,0,2.6-0.9,2.6-2.7
105
- c0-0.9-0.2-1.6-0.7-2.1c-0.4-0.5-1.1-0.7-2-0.7c-0.9,0-1.5,0.2-2,0.7C113.3,382.8,113.1,383.5,113.1,384.4z"/>
106
- <path class="st17" d="M127.5,376.3c0-0.5,0.1-0.9,0.4-1.2c0.3-0.3,0.7-0.4,1.3-0.4c0.5,0,1,0.1,1.3,0.4c0.3,0.3,0.4,0.7,0.4,1.2
107
- c0,0.5-0.1,0.9-0.4,1.2c-0.3,0.3-0.7,0.4-1.3,0.4c-0.6,0-1-0.1-1.3-0.4C127.6,377.2,127.5,376.8,127.5,376.3z M130.7,393.7h-3
108
- v-13.8h3V393.7z"/>
109
- <path class="st17" d="M149.6,393.7h-3.1v-8.5c0-1.1-0.2-1.9-0.7-2.4c-0.4-0.5-1.2-0.8-2.1-0.8c-1.3,0-2.2,0.4-2.8,1.1
110
- c-0.6,0.7-0.9,2-0.9,3.7v6.9h-3v-13.8h2.4l0.4,1.8h0.2c0.4-0.7,1-1.2,1.8-1.5c0.8-0.4,1.7-0.5,2.6-0.5c3.4,0,5.2,1.7,5.2,5V393.7z
111
- "/>
112
- <path class="st17" d="M168.7,381c0,1.9-0.6,3.4-1.9,4.4s-3.1,1.5-5.5,1.5h-2v6.8h-3.1v-18.2h5.5c2.4,0,4.1,0.5,5.3,1.4
113
- C168.1,377.8,168.7,379.2,168.7,381z M159.2,384.4h1.6c1.6,0,2.8-0.3,3.5-0.8s1.1-1.4,1.1-2.5c0-1-0.3-1.8-1-2.3s-1.7-0.8-3.1-0.8
114
- h-2.2V384.4z"/>
115
- <path class="st17" d="M181.4,379.7c0.6,0,1.1,0,1.5,0.1l-0.3,2.7c-0.4-0.1-0.9-0.1-1.3-0.1c-1.2,0-2.2,0.4-3,1.1
116
- c-0.8,0.8-1.1,1.8-1.1,3v7.2h-3v-13.8h2.4l0.4,2.4h0.2c0.5-0.8,1.1-1.5,1.9-2C179.7,379.9,180.5,379.7,181.4,379.7z"/>
117
- <path class="st17" d="M193.8,393.9c-2.2,0-4-0.6-5.2-1.9c-1.3-1.2-1.9-3-1.9-5.2c0-2.2,0.6-4,1.7-5.3c1.2-1.3,2.8-1.9,4.8-1.9
118
- c1.9,0,3.4,0.6,4.5,1.7s1.6,2.6,1.6,4.6v1.6h-9.6c0,1.3,0.4,2.4,1.1,3.1c0.7,0.7,1.7,1.1,3,1.1c0.8,0,1.6-0.1,2.4-0.2
119
- c0.7-0.2,1.5-0.4,2.4-0.8v2.4c-0.7,0.3-1.5,0.6-2.3,0.7S194.8,393.9,193.8,393.9z M193.2,381.9c-1,0-1.7,0.3-2.3,0.9
120
- c-0.6,0.6-0.9,1.4-1,2.6h6.5c0-1.1-0.3-2-0.9-2.6C194.9,382.2,194.2,381.9,193.2,381.9z"/>
121
- <path class="st17" d="M214.4,389.8c0,1.3-0.5,2.4-1.5,3.1c-1,0.7-2.5,1.1-4.4,1.1c-1.9,0-3.4-0.3-4.6-0.8v-2.5
122
- c1.7,0.7,3.3,1.1,4.7,1.1c1.9,0,2.8-0.5,2.8-1.6c0-0.3-0.1-0.6-0.3-0.9c-0.2-0.2-0.5-0.5-1-0.7c-0.5-0.3-1.1-0.5-2-0.8
123
- c-1.7-0.6-2.8-1.2-3.4-1.8c-0.6-0.6-0.9-1.4-0.9-2.4c0-1.2,0.5-2.1,1.5-2.7c1-0.7,2.3-1,4-1c1.7,0,3.3,0.3,4.8,1l-1,2.2
124
- c-1.5-0.6-2.8-0.9-3.9-0.9c-1.6,0-2.4,0.4-2.4,1.3c0,0.4,0.2,0.8,0.6,1.1s1.3,0.7,2.7,1.2c1.2,0.4,2,0.8,2.6,1.2
125
- c0.5,0.4,0.9,0.8,1.2,1.3C214.3,388.5,214.4,389.1,214.4,389.8z"/>
126
- <path class="st17" d="M229.3,389.8c0,1.3-0.5,2.4-1.5,3.1c-1,0.7-2.5,1.1-4.4,1.1c-1.9,0-3.4-0.3-4.6-0.8v-2.5
127
- c1.7,0.7,3.3,1.1,4.7,1.1c1.9,0,2.8-0.5,2.8-1.6c0-0.3-0.1-0.6-0.3-0.9c-0.2-0.2-0.5-0.5-1-0.7c-0.5-0.3-1.1-0.5-2-0.8
128
- c-1.7-0.6-2.8-1.2-3.4-1.8c-0.6-0.6-0.9-1.4-0.9-2.4c0-1.2,0.5-2.1,1.5-2.7c1-0.7,2.3-1,4-1c1.7,0,3.3,0.3,4.8,1l-1,2.2
129
- c-1.5-0.6-2.8-0.9-3.9-0.9c-1.6,0-2.4,0.4-2.4,1.3c0,0.4,0.2,0.8,0.6,1.1s1.3,0.7,2.7,1.2c1.2,0.4,2,0.8,2.6,1.2
130
- c0.5,0.4,0.9,0.8,1.2,1.3C229.2,388.5,229.3,389.1,229.3,389.8z"/>
131
- </g>
132
- </g>
133
- <g id="XMLID_25_">
134
- <path id="XMLID_38_" d="M338.5,223.6H353v99.6h47.7v12.1h-62.2V223.6z"/>
135
- <path id="XMLID_40_" d="M486.6,294.6c0,29.7-20.6,42.6-39.9,42.6c-21.7,0-38.5-15.9-38.5-41.3c0-26.8,17.6-42.6,39.8-42.6
136
- C471,253.3,486.6,270,486.6,294.6z M422.9,295.4c0,17.6,10.1,30.8,24.4,30.8c13.9,0,24.4-13.1,24.4-31.2c0-13.6-6.8-30.8-24-30.8
137
- C430.4,264.2,422.9,280.2,422.9,295.4z"/>
138
- <path id="XMLID_43_" d="M574.1,255.1c-0.3,5.8-0.7,12.3-0.7,22v46.6c0,18.4-3.6,29.7-11.4,36.6c-7.8,7.3-19.1,9.6-29.2,9.6
139
- c-9.6,0-20.2-2.3-26.7-6.6l3.6-11.1c5.3,3.3,13.6,6.3,23.5,6.3c14.9,0,25.9-7.8,25.9-28v-9h-0.3c-4.5,7.5-13.1,13.4-25.5,13.4
140
- c-19.9,0-34.1-16.9-34.1-39.1c0-27.2,17.7-42.6,36.1-42.6c13.9,0,21.5,7.3,25,13.9h0.3l0.7-12.1L574.1,255.1L574.1,255.1z
141
- M559,286.8c0-2.5-0.2-4.6-0.8-6.6c-2.7-8.5-9.8-15.4-20.4-15.4c-13.9,0-23.9,11.8-23.9,30.3c0,15.7,8,28.8,23.7,28.8
142
- c9,0,17.1-5.6,20.2-14.9c0.8-2.5,1.2-5.3,1.2-7.8L559,286.8L559,286.8z"/>
143
- <path id="XMLID_46_" d="M612.9,232.6c0.2,5-3.5,9-9.3,9c-5.1,0-8.8-4-8.8-9c0-5.1,3.8-9.1,9.1-9.1
144
- C609.4,223.5,612.9,227.4,612.9,232.6z M596.6,335.3v-80.2h14.6v80.2H596.6z"/>
145
- <path id="XMLID_49_" d="M635.4,276.8c0-8.3-0.2-15.1-0.7-21.7h12.9l0.8,13.3h0.3c4-7.6,13.3-15.1,26.5-15.1
146
- c11.1,0,28.3,6.6,28.3,34.1v47.9h-14.6v-46.2c0-12.9-4.8-23.7-18.6-23.7c-9.6,0-17.1,6.8-19.6,14.9c-0.7,1.8-1,4.3-1,6.8v48.2
147
- h-14.6v-58.5H635.4z"/>
148
- <path id="XMLID_51_" d="M727.9,225c7-1.2,16.1-2.2,27.7-2.2c14.3,0,24.7,3.3,31.3,9.3c6.1,5.3,9.8,13.4,9.8,23.4
149
- c0,10.1-3,18.1-8.6,23.9c-7.6,8.1-20.1,12.3-34.1,12.3c-4.3,0-8.3-0.2-11.6-1v44.8H728V225H727.9z M742.3,278.8
150
- c3.1,0.8,7.1,1.2,11.9,1.2c17.4,0,28-8.5,28-23.9c0-14.8-10.4-21.9-26.4-21.9c-6.3,0-11.1,0.5-13.6,1.2L742.3,278.8L742.3,278.8z"
151
- />
152
- <path id="XMLID_54_" d="M812.9,280.2c0-9.4-0.2-17.6-0.7-25H825l0.5,15.7h0.7c3.6-10.8,12.4-17.6,22.2-17.6c1.7,0,2.8,0.2,4.1,0.5
153
- v13.8c-1.5-0.3-3-0.5-5-0.5c-10.3,0-17.6,7.8-19.6,18.7c-0.3,2-0.7,4.3-0.7,6.8v42.8h-14.4v-55.2H812.9z"/>
154
- <path id="XMLID_56_" d="M873.6,297.9c0.3,19.7,12.9,27.8,27.5,27.8c10.4,0,16.7-1.8,22.2-4.1l2.5,10.4c-5.1,2.3-13.9,5-26.7,5
155
- c-24.7,0-39.4-16.2-39.4-40.4s14.3-43.3,37.6-43.3c26.2,0,33.1,23,33.1,37.8c0,3-0.3,5.3-0.5,6.8L873.6,297.9L873.6,297.9z
156
- M916.3,287.4c0.2-9.3-3.8-23.7-20.2-23.7c-14.8,0-21.2,13.6-22.4,23.7H916.3z"/>
157
- <path id="XMLID_59_" d="M946.5,320.4c4.3,2.8,11.9,5.8,19.2,5.8c10.6,0,15.6-5.3,15.6-11.9c0-7-4.1-10.8-14.9-14.8
158
- c-14.4-5.1-21.2-13.1-21.2-22.7c0-12.9,10.4-23.5,27.7-23.5c8.1,0,15.2,2.3,19.7,5l-3.6,10.6c-3.1-2-9-4.6-16.4-4.6
159
- c-8.6,0-13.4,5-13.4,10.9c0,6.6,4.8,9.6,15.2,13.6c13.9,5.3,21,12.3,21,24.2c0,14.1-10.9,24-30,24c-8.8,0-16.9-2.2-22.5-5.5
160
- L946.5,320.4z"/>
161
- <path id="XMLID_61_" d="M1012.1,320.4c4.3,2.8,11.9,5.8,19.2,5.8c10.6,0,15.6-5.3,15.6-11.9c0-7-4.1-10.8-14.9-14.8
162
- c-14.4-5.1-21.2-13.1-21.2-22.7c0-12.9,10.4-23.5,27.7-23.5c8.1,0,15.2,2.3,19.7,5l-3.6,10.6c-3.1-2-9-4.6-16.4-4.6
163
- c-8.6,0-13.4,5-13.4,10.9c0,6.6,4.8,9.6,15.2,13.6c13.9,5.3,21,12.3,21,24.2c0,14.1-10.9,24-30,24c-8.8,0-16.9-2.2-22.5-5.5
164
- L1012.1,320.4z"/>
165
- </g>
166
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
loginpress.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: https://loginpress.pro/?utm_source=loginpress-lite&utm_medium=plugin-inside&utm_campaign=pro-upgrade&utm_content=plugin_uri
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.5.8
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.5.8';
26
 
27
  /**
28
  * @var The single instance of the class
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: https://loginpress.pro/?utm_source=loginpress-lite&utm_medium=plugin-inside&utm_campaign=pro-upgrade&utm_content=plugin_uri
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.5.9
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
22
  /**
23
  * @var string
24
  */
25
+ public $version = '1.5.9';
26
 
27
  /**
28
  * @var The single instance of the class
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tested up to: 5.8
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com/?utm_source=loginpress-lite&utm_medium=author-url-link
6
  Tags: wp-login, login, login customizer, custom login, wordpress login,
7
- Stable tag: 1.5.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -33,7 +33,7 @@ LoginPress plugin is built using The Customizer API which is getting popular for
33
 
34
  ** LoginPress Addons **
35
 
36
- We have a collection of great Free and Pro addons that makes LoginPress more powerfull. Upgrade to Pro package and enjoy the show.
37
 
38
  * [Login Logout Menu (FREE)](https://wordpress.org/plugins/login-logout-menu/)
39
  * Social Login
@@ -151,7 +151,7 @@ In your WordPress Dashboard, navigate to LoginPress > Settings to get started.
151
 
152
  = Who should use LoginPress? =
153
 
154
- Every WordPress user should use LoginPress. It is easy to use and can tranform your boring wp-login.php login page into a beautiful customized login form page.
155
 
156
  = Do I need to have coding skills to use LoginPress? =
157
 
@@ -220,6 +220,9 @@ Please visit <a target="_blank" rel="friend" href="https://loginpress.pro?utm_so
220
 
221
  == Changelog ==
222
 
 
 
 
223
  = 1.5.8 – 2021-11-01 =
224
  * BugFix: Footer div spacing issue.
225
  * Bugfix: Add-Ons page - List all LoginPress addons.
@@ -341,7 +344,7 @@ Please visit <a target="_blank" rel="friend" href="https://loginpress.pro?utm_so
341
  * New Feature: One click Install / Activate / Deactivate Add-Ons on addons page.
342
  * Bugfix: Enable / Disable "Back To" link issue in customizer.
343
  * Bugfix: "remember me" color issue in customizer.
344
- * Bugfix: Login form transparacny issue in customizer.
345
  * Bugfix: Optimized plugin speed and code improvement.
346
  * Enhancement: Allow SVG file type if SVG mime enable in WordPress.
347
 
@@ -625,5 +628,5 @@ Please visit <a target="_blank" rel="friend" href="https://loginpress.pro?utm_so
625
 
626
  == Upgrade Notice ==
627
 
628
- = 1.5.8 =
629
  * Important Release, upgrade immediately. Compatible with 5.8
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com/?utm_source=loginpress-lite&utm_medium=author-url-link
6
  Tags: wp-login, login, login customizer, custom login, wordpress login,
7
+ Stable tag: 1.5.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
33
 
34
  ** LoginPress Addons **
35
 
36
+ We have a collection of great Free and Pro addons that makes LoginPress more powerful. Upgrade to Pro package and enjoy the show.
37
 
38
  * [Login Logout Menu (FREE)](https://wordpress.org/plugins/login-logout-menu/)
39
  * Social Login
151
 
152
  = Who should use LoginPress? =
153
 
154
+ Every WordPress user should use LoginPress. It is easy to use and can transform your boring wp-login.php login page into a beautiful customized login form page.
155
 
156
  = Do I need to have coding skills to use LoginPress? =
157
 
220
 
221
  == Changelog ==
222
 
223
+ = 1.5.9 – 2021-11-26 =
224
+ * BugFix: Only administrator can view the review banner now.
225
+
226
  = 1.5.8 – 2021-11-01 =
227
  * BugFix: Footer div spacing issue.
228
  * Bugfix: Add-Ons page - List all LoginPress addons.
344
  * New Feature: One click Install / Activate / Deactivate Add-Ons on addons page.
345
  * Bugfix: Enable / Disable "Back To" link issue in customizer.
346
  * Bugfix: "remember me" color issue in customizer.
347
+ * Bugfix: Login form transparency issue in customizer.
348
  * Bugfix: Optimized plugin speed and code improvement.
349
  * Enhancement: Allow SVG file type if SVG mime enable in WordPress.
350
 
628
 
629
  == Upgrade Notice ==
630
 
631
+ = 1.5.9 =
632
  * Important Release, upgrade immediately. Compatible with 5.8
uninstall.php CHANGED
@@ -32,6 +32,7 @@ $loginpress_uninstall_options = array(
32
  '_loginpress_optin',
33
  'loginpress_friday_sale_active_time',
34
  'loginpress_friday_sale_dismiss',
 
35
  );
36
 
37
  if ( ! is_multisite() ) {
32
  '_loginpress_optin',
33
  'loginpress_friday_sale_active_time',
34
  'loginpress_friday_sale_dismiss',
35
+ 'loginpress_friday_21_sale_dismiss',
36
  );
37
 
38
  if ( ! is_multisite() ) {