• Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    My WordPress Admin Doesn’t Open in Opera

    Opera for Windows
    4
    4
    618
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • E
      Ellafe last edited by

      Hello!

      I’m having trouble accessing my site WordPress admin panel in Opera—it just won’t load no matter what I try. Has anyone else experienced this, or is there a workaround to get wp-admin working properly in the Opera browser?

      Reply Quote 0
        leocg Z 2 Replies Last reply
      • leocg
        leocg Moderator Volunteer @Ellafe last edited by

        @Ellafe Opera One, Opera GX or Opera Air?

        Reply Quote 0
          1 Reply Last reply
        • Z
          zack990 @Ellafe last edited by

          @Ellafe Here’s a clean, genuine, to the point reply:


          I’ve run into this with Opera before. In my case it was just the browser getting stuck. Clearing the cache and opening wp admin in a private window fixed it instantly. If that doesn’t work, try turning off Opera’s built in ad blocker because it can block some WordPress login scripts. Usually one of these three solves it.

          Reply Quote 0
            1 Reply Last reply
          • F
            fatHummus last edited by fatHummus

            A solution made by AI for Opera Mobile:

            add this to functions.php

            /**

            • Combined solution to force the Visual Editor in Opera Mobile
              */
              function ultimate_opera_mobile_gutenberg_fix() {
              $user_agent = $_SERVER['HTTP_USER_AGENT'] ?? '';

              // Check based on the specific User Agent provided
              if ( strpos($user_agent, 'OPR/') !== false && strpos($user_agent, 'Mobile') !== false ) {

               // 1. Server-side settings (PHP)
               $user_id = get_current_user_id();
               if ( $user_id ) {
                   // Force the "Visual Editor" setting in user profile
                   update_user_meta( $user_id, 'wp_rich_editing', 'true' );
               }
               
               // Force rich editing permission
               add_filter( 'user_can_richedit', '__return_true', 999 );
              
               // Disable script concatenation to improve loading compatibility
               if ( !defined('CONCATENATE_SCRIPTS') ) {
                   define('CONCATENATE_SCRIPTS', false);
               }
              
               // 2. Inject Client-Side fix script (JS)
               add_action('admin_print_footer_scripts', function() {
                   ?>
                   <script type="text/javascript">
                       (function() {
                           function forceVisual() {
                               // Check if Gutenberg data stores are initialized
                               if (window.wp && wp.data && wp.data.dispatch('core/edit-post')) {
                                   const mode = wp.data.select('core/edit-post').getEditorMode();
                                   // If stuck in Code/Text mode, switch to Visual
                                   if (mode === 'text') {
                                       wp.data.dispatch('core/edit-post').switchEditorMode('visual');
                                   }
                               }
                           }
                           // Run on initial load and again after a delay to ensure editor is ready
                           window.addEventListener('load', forceVisual);
                           setTimeout(forceVisual, 3000);
                       })();
                   </script>
                   <?php
               }, 20);
              

              }
              }
              add_action( 'admin_init', 'ultimate_opera_mobile_gutenberg_fix' );

            Reply Quote 0
              1 Reply Last reply
            • First post
              Last post

            Computer browsers

            • Opera for Windows
            • Opera for Mac
            • Opera for Linux
            • Opera beta version
            • Opera USB

            Mobile browsers

            • Opera for Android
            • Opera Mini
            • Opera Touch
            • Opera for basic phones

            • Add-ons
            • Opera account
            • Wallpapers
            • Opera Ads

            • Help & support
            • Opera blogs
            • Opera forums
            • Dev.Opera

            • Security
            • Privacy
            • Cookies Policy
            • EULA
            • Terms of Service

            • About Opera
            • Press info
            • Jobs
            • Investors
            • Become a partner
            • Contact us

            Follow Opera

            • Opera - Facebook
            • Opera - Twitter
            • Opera - YouTube
            • Opera - LinkedIn
            • Opera - Instagram

            © Opera Software 1995-