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!
+1 to the above request! 🙂
Thanks!