Viewing 11 replies - 1 through 11 (of 11 total)
  • Same error.

    I am having the same errors on multiple sites. I’ve used this plugin on.

    same here. if anyone finds an alternative, i’d love to know.

    Dan

    (@reggie_bond)

    Same here!

    how much time it takes to fix this and send an update. I am hided many posts in my website down2hub but now they are messed up all space

    Thread Starter namgostar

    (@namgostar)

    I just found a solution that could help each of you. The link below offers two different solutions. Solution #1 is an alternative plugin. Solution #2 is to add a line of code to the functions.php file. The second solution is what I went with and it’s working perfectly for me!

    https://www.wpbeginner.com/wp-tutorials/how-to-exclude-specific-categories-from-wordpress-rss-feed/

    And, for those of you who need to hide certain posts regardless of their category, you can use the post ID to hide them as well, as instructed in the article below.

    https://wpengineer.com/2175/exclude-post-from-wordpress-feed/

    • This reply was modified 6 years, 9 months ago by namgostar.
    • This reply was modified 6 years, 9 months ago by namgostar.
    • This reply was modified 6 years, 9 months ago by namgostar.
    calebmcd

    (@calebmcdonnell)

    Hi everyone, I had the same problem.

    It appears to be caused by a request to scriptburn.com. The server was returning a ‘500 Internal Error’ page with styling, and that page (along with the styling) was being embedded directly in the edit_post metabox.

    They must’ve just shutdown the scriptburn server in the last few hours, cause now I’m getting long 5 second timeouts each time I load an admin page.

    As a temporary solution, I’m disabling any requests to scriptburn.com with the following code in an appropriate functions.php file:

    N.B.: This is a temporary solution, and it could mess up licensing for the PRO edition.

    
    add_filter( 'pre_http_request', function($return_value, $r, $url ) {
        if (stripos($url, '//scriptburn.com') !== false) {
            return new WP_Error('blocked_url', 'This request was blocked');
        } else {
            return false;
        }
    }, 10, 3 );
    

    Hope it helps!
    Caleb

    • This reply was modified 6 years, 9 months ago by calebmcd.

    Same problem here! I deactivate the plugin…hope solution will be found.
    Post/page editor messed up

    Hey, ya’ll here is a similar version of WP Hide Post from a number of months back it has no callback to a broken website so won’t break your site.

    https://www.ads-software.com/plugins/super-hide-post/

    Who knows when Scriptburn will be back up and running.

    jen

    (@stjennifer)

    Same problem here. Thanks for the recommendations for alternatives!

    Seems that it is fixed!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Post/page editor messed up’ is closed to new replies.