Title: [Plugin: Edit Flow] Notification only for Editorial Comments
Last modified: August 19, 2016

---

# [Plugin: Edit Flow] Notification only for Editorial Comments

 *  Resolved [Enhance](https://wordpress.org/support/users/skariko/)
 * (@skariko)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-edit-flow-notification-only-for-editorial-comments/)
 * Hi,
    i’ve installed your *great* plugin but i can’t do one thing. I need to send
   email to the author ONLY when i send an EDITORIAL COMMENTS. I don’t need email
   notification for the status change. There’s a way to do it?
 * The best is that the user will setup with a checkbox what email receive. Only
   Editorial Comments or all.. or nothing.
 * Thanks for all.
    Andrea

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

 *  Plugin Contributor [Daniel Bachhuber](https://wordpress.org/support/users/danielbachhuber/)
 * (@danielbachhuber)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-edit-flow-notification-only-for-editorial-comments/#post-1823972)
 * Hey there,
    Edit Flow email notifications on status change are [hooked into the ‘transition_post_status’ action](http://plugins.trac.wordpress.org/browser/edit-flow/tags/0.6/php/notifications.php?rev=309857#L31).
   If you want to disable them entirely, I’d recommend removing that action after
   the plugin has been loaded. You’d do that with something like this:
 *     ```
       function ef_remove_post_status_notifications() {
       	global $edit_flow;
       	remove_action( 'transition_post_status', array( &$edit_flow->notifications, 'notification_status_change' ), 10, 3 );
       }
       add_action( 'init', 'ef_remove_post_status_notifications' );
       ```
   
 * Add that snippet to the functions.php file in your active WordPress theme and
   you should be set.
 * Hope that helps!
 * Daniel
 *  Thread Starter [Enhance](https://wordpress.org/support/users/skariko/)
 * (@skariko)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-edit-flow-notification-only-for-editorial-comments/#post-1823976)
 * wow.
    It seems work like a charm. Thank you! 🙂
 *  Plugin Contributor [Daniel Bachhuber](https://wordpress.org/support/users/danielbachhuber/)
 * (@danielbachhuber)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-edit-flow-notification-only-for-editorial-comments/#post-1823979)
 * Wonderful! Keep the feedback and ideas coming
 * Cheers,
 * Daniel

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

The topic ‘[Plugin: Edit Flow] Notification only for Editorial Comments’ is closed
to new replies.

 * ![](https://ps.w.org/edit-flow/assets/icon-256x256.png?rev=3433533)
 * [Edit Flow](https://wordpress.org/plugins/edit-flow/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/edit-flow/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/edit-flow/)
 * [Active Topics](https://wordpress.org/support/plugin/edit-flow/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/edit-flow/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/edit-flow/reviews/)

## Tags

 * [Email Notifications](https://wordpress.org/support/topic-tag/email-notifications/)

 * 3 replies
 * 2 participants
 * Last reply from: [Daniel Bachhuber](https://wordpress.org/support/users/danielbachhuber/)
 * Last activity: [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-edit-flow-notification-only-for-editorial-comments/#post-1823979)
 * Status: resolved