Posts

Showing posts with the label flags

#600 Fix Wordpress's admin menu issue in Chrome 45

Image
If you noted, the admin menu of WordPress (4.3) is messed in Chrome (v45): According to a StackOverflow post there is a known bug in chrome (more info here ). The source of the problem stems from Slimming Paint which is enabled by default in Chrome 45. Disabling slimming paint fixes the issue. To disable this feature, visit chrome://flags/#disable-slimming-paint in Chrome and Enable the Disable slimming paint option, and make sure the other two Enable options are disabled because they will override the Disable option. Hopefully, it will be fixed in Chrome  version 47 . For now, you can do as following to solve this issue: add this in your template's functions.php (single site) or in mu-plugins/functions.php (multisite): function admin_menu_fix() {     echo '<style>     #adminmenu { transform: translateZ(0); }     </style>'; } add_action('admin_head', 'admin_menu_fix'); References: [0] http://stackoverflow.com/ques...

How to go back to the old People Switcher interface of Chrome

Image
Are you missing this People Switching icon? With the latest update (Jan 14, 2015), Chrome forces us to use the new interface for People Switching as following: and this is really annoying, way more complicated than the old one. People's yelling at each other asking how to reverse the update...blah blah blah... Here you go, there is a Chrome's setting (advanced users) to turn that new interface off: 1. Go to chrome://flags/#enable-new-avatar-menu 2. In the " Enable the new avatar menu   Mac, Windows, Linux " setting, choose Disable . 3. Click "Relaunch" and the world is happy now!