In my WordPress dashboard “Screen Option” and “Help” button are not pulldown.
Could anybody help me to solve the problem.
Thanks.
In my WordPress dashboard “Screen Option” and “Help” button are not pulldown.
Could anybody help me to solve the problem.
Thanks.
Comments are closed.
Check if you or a plugin include bootstrap and the bootstrap CSS / Theme files.
Bootstraps
.hidden
class looks like:But overrides wordpress’ definition of
.hidden
:The Top ‘Help’ & ‘Screen Options’ bars are displayed via inline style
display: block
, which is overridden by bootstraps.hidden {display: none !important}
css class.This can be fixed by rewriting the Top Bars Css via Jquery / JS.
Working example:
WordPress Version 4.5.2
Bootstrap: 3.3.6
I solve this problem after hours of searching. AdBlock hiding this tab in my case.
Right click on the webpage select
inspect element
. Then select console. Check if gives any error which says jQuery is missing. In my case jQuery files were missing in WordPress migration which I had to add myself.It’s a jQuery problem. I solved it by adding:
define('CONCATENATE_SCRIPTS', false);
to thewp-config.php
file, just below thedefine('DB_HOST')
line.http://codex.wordpress.org/Editing_wp-config.php#Disable_Javascript_Concatenation