I had added some content to contextual help section for plugin options page. Now I’d like that page defaulted/toggled to contextual help section open on specific condition in my...
I just tried to add a simple help tab, from within a class (example to test below). I wanted to use a helper/callback fn to prepare the content for...
I wish to edit the text in the dashboard’s help tab. I can add help to other pages, but I want to change the text in the grey box...
I have working code which adds a help tab to all screens in the admin which already have help options or a help screen – however, screens which don’t...
I’ve added a help section using the add_help_tab() function. I’d like to be able to click a link somewhere on the theme/plugin page and have the help panel open...
Using this well written post – tutorial Edit dashboard’s help tab I have full control over all standard WordPress admin screens. Can this be modified to add “Help” Tabs...
How to remove the contextual help and its tab completely from WordPress v3.3.2? The add_filter for contextual help that used to work like wonder on older version no longer...
Is there any way to remove the help tabs? I’m looking to remove these tabs not to hide them with CSS. On the wp-admin/includes/screen.php there are a couple of...
Using the new WP_Screen class makes it pretty easy to add help text to a screen. <?php add_action( "load-{$somepage}", 'wpse_load_reading' ); function wpse_load_reading() { get_current_screen()->add_help_tab( array( 'id' => 'my-help-tab',...