No Admin Color Themes in 3.8
-
This is a small thing, but troublesome. After upgrading to 3.8, there’s no Admin Color Scheme section on my user’s profile pages.
This is an old and unfortunately convoluted site, and I’m not sure if I might have some wires crossed that are preventing the section from appearing. I disabled all the plugins that might be interfering with admin pages, things like: Admin Menu Editor Pro, Custom Admin Branding, etc., but no luck.
In no PHP expert, but I noticed that user-edit.php was running this check to display the color scheme section:
<?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?>
Adding a simple
echo count($_wp_admin_css_colors); echo has_action('admin_color_scheme_picker');
simply returned “8”Doing the same with a simpler site I run where the color schemes show up returned “81” as it should.
So that seems to be the problem. Anyone have any idea what I might have done to be breaking the has_action(‘admin_color_scheme_picker’) check?
- The topic ‘No Admin Color Themes in 3.8’ is closed to new replies.