Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #171834

    FAIRRODGER
    Participant

    Hey guys! I love this theme and I’ve bought several licenses, however, regardless of the variety of hosting options and browsers I work across, I keep getting the same message:

    Connection lost. Saving has been disabled until you’re reconnected. We’re backing up this post in your browser, just in case.

    I’m on the MOST current version of Theme and WordPress. Thank you.

    #171891

    Rad
    Moderator

    Hi there,

    Thanks for posting in.

    Could you try adding this code at your child theme’s functions.php ?

    add_action('admin_head', function(){ 
      
      $user_page = get_current_screen();
      if( $user_page->post_type == 'post' || $user_page->post_type == 'page' ) {
    
    ?>
    <script type="text/javascript">
    jQuery.ajaxSetup({
      beforeSend : function(xhr, setting) {
        if( setting.data == 'action=wpb_single_image_src' || setting.data == 'action=heartbeat') {
          xhr.abort();
          return false;
        }
      }
    });
    </script>
    <?php 
    
    }
    
    });

    Then please provide your admin login credentials for troubleshooting.

    Thanks!