Viewing 1 replies (of 1 total)
  • Plugin Author Mohammad Jangda

    (@batmoo)

    We left out a delete option for mainly for audit/transparency purposes.

    The disable option for editorial comments was just an oversight; we’ll try to add it in the version. You can remove the box by adding the following code to your theme:

    add_action( 'admin_menu', 'x_disable_ef_editorial_comments', 100 );
    
    function x_disable_ef_editorial_comments() {
    	remove_meta_box( 'edit-flow-editorial-comments', 'post', 'normal' );
    	remove_meta_box( 'edit-flow-editorial-comments', 'page', 'normal' );
    }

    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Edit Flow] Remove/Reset Editorial Comments’ is closed to new replies.