• Resolved Andrew Rothman

    (@arothman)


    Testing with WordPress 7.0-RC2-62242. Is there any way to disable the fade transitions between pages in the admin area? The ‘double flash’ when navigating between the admin panels is annoying and feels slow. I was hoping there was a preference checkbox somewhere…?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @arothman ,

    You’re not missing anything there isn’t currently a built-in setting in WordPress 7.0 (including RC builds) to disable the admin page fade transitions.

    What you’re seeing is part of recent UI updates where WordPress introduces subtle opacity/transition effects between admin views. At the moment, these aren’t user-configurable via preferences or profile settings.

    That said, you can disable the effect with a small CSS override. For example, adding this via a custom plugin or admin CSS will effectively remove the transitions:

    add_action(‘admin_head’, function () {
    echo ‘<style>
    * {
    transition: none !important;
    animation: none !important;
    }
    html, body {
    opacity: 1 !important;
    }
    </style>’;
    });

    If you prefer a more targeted approach, you can scope it to specific admin containers (like #wpbody-content or .wrap) instead of disabling all transitions globally.

    Also worth double-checking if any plugin is enhancing or overriding admin animations, though in this case it does appear to be coming from core.

    It might be a good candidate for a feature request either a “reduced motion” preference or respecting the system-level prefers-reduced-motion setting more aggressively in wp-admin.

    Thread Starter Andrew Rothman

    (@arothman)

    Thanks for the tip! I’ll give that a try.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.