Title: Plugin affects WordPress&#039; core admin features
Last modified: August 20, 2016

---

# Plugin affects WordPress' core admin features

 *  [llch](https://wordpress.org/support/users/llch/)
 * (@llch)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-affects-wordpress-core-admin-features/)
 * 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/](http://wordpress.org/extend/plugins/seo-facebook-comments/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Alicia](https://wordpress.org/support/users/sexydawnt/)
 * (@sexydawnt)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-affects-wordpress-core-admin-features/#post-3424869)
 * 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' ));
                   }
       ```
   
 *  [Webbverkstaden](https://wordpress.org/support/users/webbverkstaden/)
 * (@webbverkstaden)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-affects-wordpress-core-admin-features/#post-3424877)
 * I’m having this problem as well …
 *  [Alicia](https://wordpress.org/support/users/sexydawnt/)
 * (@sexydawnt)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-affects-wordpress-core-admin-features/#post-3424882)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/seo-facebook-comments_251815.svg)
 * [SEO Facebook Comment](https://wordpress.org/plugins/seo-facebook-comments/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/seo-facebook-comments/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/seo-facebook-comments/)
 * [Active Topics](https://wordpress.org/support/plugin/seo-facebook-comments/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/seo-facebook-comments/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/seo-facebook-comments/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Alicia](https://wordpress.org/support/users/sexydawnt/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-affects-wordpress-core-admin-features/#post-3424882)
 * Status: not resolved