• Resolved pa4080

    (@spaszs)


    Hello,
    today I found the ‘Screen Options’ drop-down menu appears empty on WordPress 5.1. I hope this bug will be fixed soon. Meanwhile I’ve created a temporary fix. Add the following code to the functions.php file:

    /**
     * Fix 'Screen Options' issue of WordPress 5.0/5.1
     * :: https://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/
     * :: https://davidwalsh.name/add-custom-css-wordpress-admin
    **/
    function fix_screen_options_issue_wp5() {
      echo '<style>
    	form#adv-settings {
    		display: block !important;
    	}
    	</style>';
    }
    add_action('admin_head', 'fix_screen_options_issue_wp5');
    
    • This topic was modified 5 years, 11 months ago by pa4080.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Andrew Ozz

    (@azaozz)

    The Screen Options are disabled when using the Block Editor (Gutenberg) as they do not apply to that screen. They show when using the Classic Editor and the old Edit Post screen ??

    Thread Starter pa4080

    (@spaszs)

    Hi, @azaozz,
    I’m sure that I’m talking about the Classic Editor ?? Also this happens on all 4 WordPress instances that I updated yesterday to version 5.1. Here is an illustration what I mean:

    Best Regards,
    Spas

    • This reply was modified 5 years, 11 months ago by pa4080.
    • This reply was modified 5 years, 11 months ago by pa4080.
    • This reply was modified 5 years, 11 months ago by pa4080.
    • This reply was modified 5 years, 11 months ago by pa4080.
    • This reply was modified 5 years, 11 months ago by pa4080.
    Plugin Author Andrew Ozz

    (@azaozz)

    Hmmmm, not seeing this here. What is that injected stylesheet that has #top_banner, #top-banner, #sponsors, .... Don’t think it’s part of WP ??

    Thread Starter pa4080

    (@spaszs)

    Thank you for showing me the right direction! ?? You are right, it is not a part of WP, it is injected by the Chrome extension AdGuard. I just disable it for this page and now everything looks normal. Strange, AdGuard did not behave like this with WP 4.9.8.

    Best Regards,
    Spas

    Plugin Author Andrew Ozz

    (@azaozz)

    Thanks for letting everybody know. I’m glad this got resolved ??

    • This reply was modified 5 years, 11 months ago by Andrew Ozz.

    Hello ,

    i have update plugin and wordpress version above 5.1 but not showing in screen option Revision. its show in page and post but wordpress dashboard page not showing. i have already try to your above all answer. but not getting solution.

    if any other solution then let me know.also using wpengine.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Screen Options Issue’ is closed to new replies.