Title: Re-enable Quick Edit
Last modified: August 21, 2016

---

# Re-enable Quick Edit

 *  Resolved [peter-a](https://wordpress.org/support/users/peter-a/)
 * (@peter-a)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/re-enable-quick-edit/)
 * This plugin is great, but it has the side effect of disabling the Quick Edit 
   function.
 * To re-enable Quick Edit, I edited line 98 of plugin.php to read:
 * `if ( 'post.php' != $pagenow && 'post-new.php' != $pagenow && 'edit.php' != $
   pagenow ) {`
 * It would be great if you could add a setting in the future to enable or disable
   Heartbeat on edit.php in order to let the user decide about Quick Edit.
 * [https://wordpress.org/plugins/ajax-heartbeat-tool/](https://wordpress.org/plugins/ajax-heartbeat-tool/)

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

 *  Plugin Author [Mikel King](https://wordpress.org/support/users/vizkr/)
 * (@vizkr)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/re-enable-quick-edit/#post-5069424)
 * Hey [@peter-a](https://wordpress.org/support/users/peter-a/),
 * Thanks for that. I am looking at adding a basic settings page in the next revision.
   I will try to include this suggestion.
 *  [imkane](https://wordpress.org/support/users/imkane/)
 * (@imkane)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/re-enable-quick-edit/#post-5069433)
 * I also had this happen, thanks for the code suggestion, Peter.
 *  Plugin Author [Mikel King](https://wordpress.org/support/users/vizkr/)
 * (@vizkr)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/re-enable-quick-edit/#post-5069452)
 * Peter,
 * I have incorporated your suggestion…
 *     ```
       public function unregister_wp_heartbeat() {
           	global $pagenow;
   
           	if ( $pagenow != 'post.php' &&
                   $pagenow != 'post-new.php' &&
                   $pagenow != 'edit.php'
                  ) {
   
           		wp_deregister_script('heartbeat');
           	}
           }
       ```
   
 * Thanks,
    m!

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

The topic ‘Re-enable Quick Edit’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/ajax-heartbeat-tool.svg)
 * [AJAX Heartbeat Tool](https://wordpress.org/plugins/ajax-heartbeat-tool/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ajax-heartbeat-tool/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ajax-heartbeat-tool/)
 * [Active Topics](https://wordpress.org/support/plugin/ajax-heartbeat-tool/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ajax-heartbeat-tool/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ajax-heartbeat-tool/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Mikel King](https://wordpress.org/support/users/vizkr/)
 * Last activity: [11 years, 6 months ago](https://wordpress.org/support/topic/re-enable-quick-edit/#post-5069452)
 * Status: resolved