-
AuthorPosts
-
December 27, 2014 at 12:45 pm #171834
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.
December 27, 2014 at 2:57 pm #171891Hi 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!
-
AuthorPosts