• If SEO Facebook Comment is enabled and go to new post and trying to press the collapse button on the metabox, it won’t work.

    I look at the console and look like there are two admin-ajax.php fired off, one tell the box to close, another to tell the box to open.

    So I dig deeper what’s wrong, there are core scripts like “dashboard” enqueued again at “admin_init” action in classes/PlulzAdminClass.php. If I comment them out then the metabox work perfectly again.

    http://wordpress.org/extend/plugins/seo-facebook-comments/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I am having the same problem. Exactly what should we comment out? Just the admin_init line?

    Like this?

    public function __construct()
            {
                if ( is_admin() )
                {
                    add_action( 'init', array( &$this, 'adminReceiver' ) );
    
                    //add_action( 'admin_init', array( &$this, 'register' ) );
    
                    add_action( 'admin_notices', array( &$this, 'welcomeMessage' ) );
    
                    add_action( 'wp_dashboard_setup', array( &$this, 'hookDashboard' ) );
    
                    if ( !empty($this->menuPage) )
                        add_action( 'admin_menu', array( &$this, 'page' ));
                }

    I’m having this problem as well …

    Webbverkstaden – when I commented out as above, it started working for me.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin affects WordPress' core admin features’ is closed to new replies.