Version Description
- Minor issue fixed
Download this release
Release Info
Developer | weblizar |
Plugin | ![]() |
Version | 2.8.4 |
Comparing to | |
See all releases |
Code changes from version 2.8.3 to 2.8.4
- admin-custom-login.php +1 -1
- css/socialcss.php +1 -1
- includes/get_value.php +2 -1
- includes/social/social.php +7 -2
- readme.txt +5 -1
admin-custom-login.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Admin Custom Login
|
4 |
-
* Version: 2.8.
|
5 |
* Description: Customize Your WordPress Login Screen Amazingly - Add Own Logo, Add Social Profiles, Login Form Positions, Background Image Slide Show
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://weblizar.com/plugins/
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Admin Custom Login
|
4 |
+
* Version: 2.8.4
|
5 |
* Description: Customize Your WordPress Login Screen Amazingly - Add Own Logo, Add Social Profiles, Login Form Positions, Background Image Slide Show
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://weblizar.com/plugins/
|
css/socialcss.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
$Social_page = unserialize(get_option('Admin_custome_login_Social'));
|
3 |
$social_icon_size=$Social_page['social_icon_size'];
|
4 |
$social_icon_layout=$Social_page['social_icon_layout'];
|
5 |
-
$social_link_new_window
|
6 |
$social_icon_color=$Social_page['social_icon_color'];
|
7 |
$social_icon_color_onhover=$Social_page['social_icon_color_onhover'];
|
8 |
$social_icon_bg=$Social_page['social_icon_bg'];
|
2 |
$Social_page = unserialize(get_option('Admin_custome_login_Social'));
|
3 |
$social_icon_size=$Social_page['social_icon_size'];
|
4 |
$social_icon_layout=$Social_page['social_icon_layout'];
|
5 |
+
// $social_link_new_window = $Social_page['social_link_new_window'];
|
6 |
$social_icon_color=$Social_page['social_icon_color'];
|
7 |
$social_icon_color_onhover=$Social_page['social_icon_color_onhover'];
|
8 |
$social_icon_bg=$Social_page['social_icon_bg'];
|
includes/get_value.php
CHANGED
@@ -69,6 +69,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
69 |
// Get value of Text and Color page
|
70 |
$text_and_color_page = unserialize(get_option('Admin_custome_login_text'));
|
71 |
$heading_font_color = $text_and_color_page['heading_font_color'];
|
|
|
72 |
$input_font_color = $text_and_color_page['input_font_color'];
|
73 |
$link_color = $text_and_color_page['link_color'];
|
74 |
$button_color = $text_and_color_page['button_color'];
|
@@ -121,7 +122,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
121 |
$enable_social_icon =$Social_page['enable_social_icon'];
|
122 |
$social_icon_size =$Social_page['social_icon_size'];
|
123 |
$social_icon_layout =$Social_page['social_icon_layout'];
|
124 |
-
$social_link_new_window
|
125 |
$social_icon_color =$Social_page['social_icon_color'];
|
126 |
$social_icon_color_onhover =$Social_page['social_icon_color_onhover'];
|
127 |
$social_icon_bg =$Social_page['social_icon_bg'];
|
69 |
// Get value of Text and Color page
|
70 |
$text_and_color_page = unserialize(get_option('Admin_custome_login_text'));
|
71 |
$heading_font_color = $text_and_color_page['heading_font_color'];
|
72 |
+
// $social_link_new_window = $text_and_color_page['social_link_new_window'];
|
73 |
$input_font_color = $text_and_color_page['input_font_color'];
|
74 |
$link_color = $text_and_color_page['link_color'];
|
75 |
$button_color = $text_and_color_page['button_color'];
|
122 |
$enable_social_icon =$Social_page['enable_social_icon'];
|
123 |
$social_icon_size =$Social_page['social_icon_size'];
|
124 |
$social_icon_layout =$Social_page['social_icon_layout'];
|
125 |
+
// $social_link_new_window =$Social_page['social_link_new_window'];
|
126 |
$social_icon_color =$Social_page['social_icon_color'];
|
127 |
$social_icon_color_onhover =$Social_page['social_icon_color_onhover'];
|
128 |
$social_icon_bg =$Social_page['social_icon_bg'];
|
includes/social/social.php
CHANGED
@@ -156,13 +156,18 @@ jQuery(document).ready(function(){
|
|
156 |
<th scope="row" ><?php _e('Enable To Open Social Link In New Window', WEBLIZAR_ACL)?></th>
|
157 |
<td></td>
|
158 |
</tr>
|
|
|
159 |
<tr class="radio-span" style="border-bottom:none;">
|
160 |
<td>
|
|
|
|
|
|
|
|
|
161 |
<span>
|
162 |
-
<input type="radio" name="
|
163 |
</span>
|
164 |
<span>
|
165 |
-
<input type="radio" name="
|
166 |
</span>
|
167 |
</td>
|
168 |
</tr>
|
156 |
<th scope="row" ><?php _e('Enable To Open Social Link In New Window', WEBLIZAR_ACL)?></th>
|
157 |
<td></td>
|
158 |
</tr>
|
159 |
+
|
160 |
<tr class="radio-span" style="border-bottom:none;">
|
161 |
<td>
|
162 |
+
<?php
|
163 |
+
$Social_page = unserialize(get_option('Admin_custome_login_Social'));
|
164 |
+
$social_link_new_window = @$Social_page['social_link_new_window'];
|
165 |
+
?>
|
166 |
<span>
|
167 |
+
<input type="radio" name="social_link_new_window" value="yes" id="social_link_new_window1" <?php if($social_link_new_window=="yes")echo "checked"; ?> <?php if(empty($social_link_new_window))echo "checked"; ?> /> <?php _e('Yes', WEBLIZAR_ACL)?><br>
|
168 |
</span>
|
169 |
<span>
|
170 |
+
<input type="radio" name="social_link_new_window" value="no" id="social_link_new_window2" <?php if($social_link_new_window=="no")echo "checked"; ?> /> <?php _e('No', WEBLIZAR_ACL)?><br>
|
171 |
</span>
|
172 |
</td>
|
173 |
</tr>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.weblizar.com/
|
|
4 |
Tags: custom login page, custom admin login, custom login, customize wordpress login page, design wordpress login
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -172,6 +172,10 @@ If you have any question contact us at here: [Plugin Support Forum ](http://word
|
|
172 |
|
173 |
For more information, see [Weblizar](http://www.weblizar.com/)
|
174 |
|
|
|
|
|
|
|
|
|
175 |
= 2.8.3 =
|
176 |
* translate file update.
|
177 |
|
4 |
Tags: custom login page, custom admin login, custom login, customize wordpress login page, design wordpress login
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 2.8.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
172 |
|
173 |
For more information, see [Weblizar](http://www.weblizar.com/)
|
174 |
|
175 |
+
|
176 |
+
= 2.8.4 =
|
177 |
+
* Minor issue fixed
|
178 |
+
|
179 |
= 2.8.3 =
|
180 |
* translate file update.
|
181 |
|