Support » Plugin: Better Admin Help Tabs » Remove standart Help

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Stephen S

    (@ssuess)

    Hi Alex,

    This is a feature request that I am looking into for the next version, stay tuned.

    Thanks for the feedback.

    Stephen

    +1 to the above request! 🙂
    Thanks!

    Anyways, found a dirty fix for this. Created another plugin and added the following code:
    function mytrick_remove_contextual_help() {
    $screen = get_current_screen();
    $screen->remove_help_tabs();
    }
    add_action( ‘admin_head’, ‘mytrick_remove_contextual_help’ );

    And voila, it works for now! 🙂
    Guess it may work if you copy to your theme’s function.php too.

    But still, waiting for the update from Stephen. Till then, this trick works. 🙂
    Hope that helps others too!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove standart Help’ is closed to new replies.