Version Description
- Fixed admin menu bug
Download this release
Release Info
Developer | argonius |
Plugin | Absolutely Glamorous Custom Admin |
Version | 1.2.7.8 |
Comparing to | |
See all releases |
Code changes from version 1.2.7.7 to 1.2.7.8
- plugin.php +2 -2
- readme.txt +7 -1
- script/ag_script.js +1 -0
plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: AG Custom Admin
|
|
4 |
Plugin URI: http://agca.argonius.com/ag-custom-admin/category/ag_custom_admin
|
5 |
Description: Hide or change items in admin panel. Customize buttons from admin menu. Colorize admin and login page with custom colors.
|
6 |
Author: Argonius
|
7 |
-
Version: 1.2.7.
|
8 |
Author URI: http://www.argonius.com/
|
9 |
|
10 |
Copyright 2013. Argonius (email : info@argonius.com)
|
@@ -48,7 +48,7 @@ class AGCA{
|
|
48 |
/*Initialize properties*/
|
49 |
$this->colorizer = $this->jsonMenuArray(get_option('ag_colorizer_json'),'colorizer');
|
50 |
//fb($this->colorizer);
|
51 |
-
$this->agca_version = "1.2.7.
|
52 |
}
|
53 |
// Add donate and support information
|
54 |
function jk_filter_plugin_links($links, $file)
|
4 |
Plugin URI: http://agca.argonius.com/ag-custom-admin/category/ag_custom_admin
|
5 |
Description: Hide or change items in admin panel. Customize buttons from admin menu. Colorize admin and login page with custom colors.
|
6 |
Author: Argonius
|
7 |
+
Version: 1.2.7.8
|
8 |
Author URI: http://www.argonius.com/
|
9 |
|
10 |
Copyright 2013. Argonius (email : info@argonius.com)
|
48 |
/*Initialize properties*/
|
49 |
$this->colorizer = $this->jsonMenuArray(get_option('ag_colorizer_json'),'colorizer');
|
50 |
//fb($this->colorizer);
|
51 |
+
$this->agca_version = "1.2.7.8";
|
52 |
}
|
53 |
// Add donate and support information
|
54 |
function jk_filter_plugin_links($links, $file)
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://agca.argonius.com/ag-custom-admin/support-for-future-develop
|
|
4 |
Tags: admin, customize, hide, change admin
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.7.1
|
7 |
-
Stable tag: 1.2.7.
|
8 |
|
9 |
Hide or change items in admin panel. Customize buttons from admin menu. Colorize admin and login page with custom colors.
|
10 |
|
@@ -114,6 +114,9 @@ Try clearing browser's cache. If that does not work, go to browser's console and
|
|
114 |
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
117 |
= 1.2.7.7 =
|
118 |
* Updated options labels
|
119 |
* Better checkbox and radiobox styles
|
@@ -311,6 +314,9 @@ Try clearing browser's cache. If that does not work, go to browser's console and
|
|
311 |
|
312 |
== Upgrade Notice ==
|
313 |
|
|
|
|
|
|
|
314 |
= 1.2.7.7 =
|
315 |
Updated admin menu auto-folding options. Fixed bug on reset password page. Updated options styles.
|
316 |
|
4 |
Tags: admin, customize, hide, change admin
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.7.1
|
7 |
+
Stable tag: 1.2.7.8
|
8 |
|
9 |
Hide or change items in admin panel. Customize buttons from admin menu. Colorize admin and login page with custom colors.
|
10 |
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= 1.2.7.8 =
|
118 |
+
* Fixed admin menu bug
|
119 |
+
|
120 |
= 1.2.7.7 =
|
121 |
* Updated options labels
|
122 |
* Better checkbox and radiobox styles
|
314 |
|
315 |
== Upgrade Notice ==
|
316 |
|
317 |
+
= 1.2.7.8 =
|
318 |
+
* Fixed admin menu bug
|
319 |
+
|
320 |
= 1.2.7.7 =
|
321 |
Updated admin menu auto-folding options. Fixed bug on reset password page. Updated options styles.
|
322 |
|
script/ag_script.js
CHANGED
@@ -576,6 +576,7 @@ function processData(){
|
|
576 |
var array = "{";
|
577 |
var firstElement = true;
|
578 |
var topMarker = "";
|
|
|
579 |
jQuery('#ag_edit_adminmenu :checkbox').each(function(){
|
580 |
if(firstElement != true){
|
581 |
array += ", ";
|
576 |
var array = "{";
|
577 |
var firstElement = true;
|
578 |
var topMarker = "";
|
579 |
+
jQuery('#ag_edit_adminmenu input').removeClass('agca-checkbox');
|
580 |
jQuery('#ag_edit_adminmenu :checkbox').each(function(){
|
581 |
if(firstElement != true){
|
582 |
array += ", ";
|