Version Description
- Fixed custom Howdy for Netherland's WP
Download this release
Release Info
Developer | cusmin |
Plugin | Absolutely Glamorous Custom Admin |
Version | 6.3 |
Comparing to | |
See all releases |
Code changes from version 6.2 to 6.3
- plugin.php +6 -6
- readme.txt +7 -1
plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Absolutely Glamorous Custom Admin
|
|
4 |
Plugin URI: https://wordpressadminpanel.com/ag-custom-admin/
|
5 |
Description: All-in-one tool for admin panel customization. Change almost everything: admin menu, dashboard, login page, admin bar etc. Apply admin panel themes.
|
6 |
Author: Cusmin
|
7 |
-
Version: 6.
|
8 |
Text Domain: ag-custom-admin
|
9 |
Domain Path: /languages
|
10 |
Author URI: https://cusmin.com
|
@@ -73,7 +73,7 @@ class AGCA{
|
|
73 |
/*Initialize properties*/
|
74 |
$this->colorizer = $this->jsonMenuArray(get_option('ag_colorizer_json'),'colorizer');
|
75 |
|
76 |
-
$this->agca_version = "6.
|
77 |
|
78 |
//TODO:upload images programmatically
|
79 |
}
|
@@ -1121,12 +1121,12 @@ class AGCA{
|
|
1121 |
var alltext="";
|
1122 |
alltext="";
|
1123 |
jQuery('li#wp-admin-bar-my-account').css('cursor','default');
|
1124 |
-
alltext = jQuery('li#wp-admin-bar-my-account').html();
|
1125 |
if(alltext!=null){
|
1126 |
-
var parts = alltext.split('
|
1127 |
-
alltext = "<?php echo get_option('agca_howdy'); ?>" +
|
1128 |
}
|
1129 |
-
jQuery("li#wp-admin-bar-my-account").html("<a href=\"#\" class=\"ab-item\">"+alltext+"</a>");
|
1130 |
|
1131 |
<?php } ?>
|
1132 |
<?php
|
4 |
Plugin URI: https://wordpressadminpanel.com/ag-custom-admin/
|
5 |
Description: All-in-one tool for admin panel customization. Change almost everything: admin menu, dashboard, login page, admin bar etc. Apply admin panel themes.
|
6 |
Author: Cusmin
|
7 |
+
Version: 6.3
|
8 |
Text Domain: ag-custom-admin
|
9 |
Domain Path: /languages
|
10 |
Author URI: https://cusmin.com
|
73 |
/*Initialize properties*/
|
74 |
$this->colorizer = $this->jsonMenuArray(get_option('ag_colorizer_json'),'colorizer');
|
75 |
|
76 |
+
$this->agca_version = "6.3";
|
77 |
|
78 |
//TODO:upload images programmatically
|
79 |
}
|
1121 |
var alltext="";
|
1122 |
alltext="";
|
1123 |
jQuery('li#wp-admin-bar-my-account').css('cursor','default');
|
1124 |
+
alltext = jQuery('li#wp-admin-bar-my-account .ab-item:first').html();
|
1125 |
if(alltext!=null){
|
1126 |
+
var parts = alltext.split(' <span class="display-name"');
|
1127 |
+
alltext = "<?php echo get_option('agca_howdy'); ?>" + ', <span class="display-name"' + parts[1];
|
1128 |
}
|
1129 |
+
jQuery("li#wp-admin-bar-my-account .ab-item:first").html("<a href=\"#\" class=\"ab-item\">"+alltext+"</a>");
|
1130 |
|
1131 |
<?php } ?>
|
1132 |
<?php
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=agca@cus
|
|
4 |
Tags: admin, customize, hide, change admin, themes, admin themes, admin bar, login page
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.9.5
|
7 |
-
Stable tag: 6.
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl.txt
|
10 |
|
@@ -148,6 +148,9 @@ If you have the latest WordPress and plugin versions and you still experience so
|
|
148 |
|
149 |
== Change Log ==
|
150 |
|
|
|
|
|
|
|
151 |
= 6.2 =
|
152 |
* Fixed 500 error in Multisite
|
153 |
|
@@ -539,6 +542,9 @@ If you have the latest WordPress and plugin versions and you still experience so
|
|
539 |
|
540 |
== Upgrade Notice ==
|
541 |
|
|
|
|
|
|
|
542 |
= 6.2 =
|
543 |
* Fixed 500 error in Multisite
|
544 |
|
4 |
Tags: admin, customize, hide, change admin, themes, admin themes, admin bar, login page
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.9.5
|
7 |
+
Stable tag: 6.3
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl.txt
|
10 |
|
148 |
|
149 |
== Change Log ==
|
150 |
|
151 |
+
= 6.3 =
|
152 |
+
* Fixed custom Howdy for Netherland's WP
|
153 |
+
|
154 |
= 6.2 =
|
155 |
* Fixed 500 error in Multisite
|
156 |
|
542 |
|
543 |
== Upgrade Notice ==
|
544 |
|
545 |
+
= 6.3 =
|
546 |
+
* Fixed custom Howdy for Netherland's WP
|
547 |
+
|
548 |
= 6.2 =
|
549 |
* Fixed 500 error in Multisite
|
550 |
|