Erident Custom Login and Dashboard - Version 3.5.1

Version Description

  • Compatibility fix with WordPress 4.5
  • Minor bug fix
Download this release

Release Info

Developer libinvbabu
Plugin Icon 128x128 Erident Custom Login and Dashboard
Version 3.5.1
Comparing to
See all releases

Code changes from version 3.5 to 3.5.1

Files changed (2) hide show
  1. er-custom-login.php +6 -5
  2. readme.txt +8 -4
er-custom-login.php CHANGED
@@ -5,13 +5,13 @@ Plugin URI: http://www.eridenttech.com/wp-plugins/erident-custom-login-and-dashb
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
- Version: 3.5
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
12
  */
13
 
14
- /* Copyright 2015 Libin V Babu (email : libin@libin.in)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -56,6 +56,7 @@ function left_admin_footer_text_output($er_left) {
56
  }
57
 
58
  /* Dashboard Footer customisazion. Empty field means it will show default value */
 
59
  $opt = right_admin_footer_text_output($er_right);
60
  if ( !empty($opt)) {
61
  add_filter('update_footer', 'right_admin_footer_text_output', 11); //right side
@@ -141,7 +142,7 @@ function er_login_logo() {
141
  .login form {
142
  border-radius:<?php echo $er_options['dashboard_login_radius'] ?>px;
143
  border:<?php echo $er_options['dashboard_border_thick'] ?>px <?php echo $er_options['dashboard_login_border'] ?> <?php echo $er_options['dashboard_border_color'] ?>;
144
- background:rgba(<?php echo $loginbg['red'];?>,<?php echo $loginbg['green']?>,<?php echo $loginbg['blue']?>,<?php echo $er_login_default_opacity; ?>) url(<?php echo $er_options['login_bg_image'] ?>) <?php echo $er_options['login_bg_repeat'] ?> <?php echo $er_options['login_bg_xpos'] ?> <?php echo $er_options['login_bg_ypos'] ?>;
145
  -moz-box-shadow: <?php echo $er_login_form_shadow ?>;
146
  -webkit-box-shadow: <?php echo $er_login_form_shadow ?>;
147
  box-shadow: <?php echo $er_login_form_shadow ?>;
@@ -263,7 +264,7 @@ function wp_erident_dashboard_install() {
263
 
264
  $er_new_options = array(
265
  'dashboard_data_left' => 'Powered by YourWebsiteName',
266
- 'dashboard_data_right' => '&copy; 2015 All Rights Reserved',
267
  'dashboard_image_logo' => plugins_url('images/default-logo.png', __FILE__),
268
  'dashboard_image_logo_width' => '274',
269
  'dashboard_image_logo_height' => '63',
@@ -900,7 +901,7 @@ value="<?php echo $er_options['login_bg_ypos']; ?>" />
900
  <li><?php _e( 'German by <a href="http://www.starsofvietnam.net/" target="_blank">Peter Kaulfuss</a>', 'erident-custom-login-and-dashboard'); ?></li>
901
  <li><?php _e( 'Turkish by <a href="https://www.linkedin.com/profile/view?id=335577895" target="_blank">Muhammet Küçük</a>', 'erident-custom-login-and-dashboard'); ?></li>
902
  <li><?php _e( 'Persian by <a href="https://about.me/reza.heydari" target="_blank">Reza Heydari</a>', 'erident-custom-login-and-dashboard'); ?></li>
903
- <li><?php _e( 'Portuguese-Brazil by <a href="https://www.facebook.com/home.php?m2w&refid=8" target="_blank">Reza Heydari</a>', 'erident-custom-login-and-dashboard'); ?></li>
904
  </ul>
905
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
906
  </div><!-- end .er_notice -->
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
+ Version: 3.5.1
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
12
  */
13
 
14
+ /* Copyright 2016 Libin V Babu (email : libin@libin.in)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
56
  }
57
 
58
  /* Dashboard Footer customisazion. Empty field means it will show default value */
59
+ $er_right = !empty($er_right)? $er_right:"";
60
  $opt = right_admin_footer_text_output($er_right);
61
  if ( !empty($opt)) {
62
  add_filter('update_footer', 'right_admin_footer_text_output', 11); //right side
142
  .login form {
143
  border-radius:<?php echo $er_options['dashboard_login_radius'] ?>px;
144
  border:<?php echo $er_options['dashboard_border_thick'] ?>px <?php echo $er_options['dashboard_login_border'] ?> <?php echo $er_options['dashboard_border_color'] ?>;
145
+ background:rgba(<?php echo $loginbg['red'];?>,<?php echo $loginbg['green']?>,<?php echo $loginbg['blue']?>,<?php echo $er_login_default_opacity; ?>) url(<?php echo $er_options['login_bg_image'] ?>) <?php echo $er_options['login_bg_repeat'] ?> <?php echo $er_options['login_bg_xpos'] ?> <?php echo $er_options['login_bg_ypos'] ?> !important;
146
  -moz-box-shadow: <?php echo $er_login_form_shadow ?>;
147
  -webkit-box-shadow: <?php echo $er_login_form_shadow ?>;
148
  box-shadow: <?php echo $er_login_form_shadow ?>;
264
 
265
  $er_new_options = array(
266
  'dashboard_data_left' => 'Powered by YourWebsiteName',
267
+ 'dashboard_data_right' => '&copy; 2016 All Rights Reserved',
268
  'dashboard_image_logo' => plugins_url('images/default-logo.png', __FILE__),
269
  'dashboard_image_logo_width' => '274',
270
  'dashboard_image_logo_height' => '63',
901
  <li><?php _e( 'German by <a href="http://www.starsofvietnam.net/" target="_blank">Peter Kaulfuss</a>', 'erident-custom-login-and-dashboard'); ?></li>
902
  <li><?php _e( 'Turkish by <a href="https://www.linkedin.com/profile/view?id=335577895" target="_blank">Muhammet Küçük</a>', 'erident-custom-login-and-dashboard'); ?></li>
903
  <li><?php _e( 'Persian by <a href="https://about.me/reza.heydari" target="_blank">Reza Heydari</a>', 'erident-custom-login-and-dashboard'); ?></li>
904
+ <li><?php _e( 'Portuguese-Brazil by <a href="https://www.facebook.com/samuel.desconsi" target="_blank">Samuel Desconsi </a>', 'erident-custom-login-and-dashboard'); ?></li>
905
  </ul>
906
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
907
  </div><!-- end .er_notice -->
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: libinvbabu
3
  Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
- Tested up to: 4.2.2
7
- Stable tag: 3.5
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -124,6 +124,10 @@ You can achieve it by either using a transparent png/gif image or you can use th
124
 
125
  == Changelog ==
126
 
 
 
 
 
127
  = 3.5 =
128
  * Option to keep default WordPress version on dashboard footer
129
  * Persian translation added
@@ -215,5 +219,5 @@ You can achieve it by either using a transparent png/gif image or you can use th
215
 
216
  == Upgrade Notice ==
217
 
218
- = 3.5 =
219
- New feature, translations and security fix.
3
  Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
+ Tested up to: 4.5
7
+ Stable tag: 3.5.1
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
124
 
125
  == Changelog ==
126
 
127
+ = 3.5.1 =
128
+ * Compatibility fix with WordPress 4.5
129
+ * Minor bug fix
130
+
131
  = 3.5 =
132
  * Option to keep default WordPress version on dashboard footer
133
  * Persian translation added
219
 
220
  == Upgrade Notice ==
221
 
222
+ = 3.5.1 =
223
+ Compatibility fix with WordPress 4.5