The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
118 views

Edit dashboard's help tab

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 with links on the right-hand side of the help tab. It is on the 'For ...
3
votes
1answer
82 views

Click link on plugin/theme page and open the contextual help on a specific tab

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 at whichever tab I need. Can someone ...
-1
votes
1answer
84 views

How to Add Multiple Pointers in a Single Page? [closed]

Feature pointers were introduced with WordPress 3.3 as a core feature but does any one know how to add multiple WordPress Pointers to a single page?
3
votes
2answers
388 views

Help Tabs with: add_help_tab() callback - How does the argument work?

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 different help tabs. According to core, the function ...
0
votes
1answer
84 views

contextual_help, change the “Help” tab label

Is there any way to change the "Help" tabs label? I speak about the top right tab to toggle the contextual help. I'm looking to change "Help" label by "Documentation". I work on WordPress 3.3 and ...
0
votes
1answer
533 views

How to remove contextual help on WP 3.3.2?

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 work now. Update: (trimmed ...
2
votes
2answers
510 views

How to remove help tabs?

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 lines that mention this but no idea ...
-1
votes
1answer
50 views

Plugin for managing wp-admin Help panels? [closed]

I would like to give my client the ability to provide instructions about how to use their customized WordPress site via the Help tab. Is there a plugin that allows to manage this functionality via ...
0
votes
2answers
913 views

WooThemes: Premium News Featured Post Slider Not Showing Images [closed]

So, I'm using the free wootheme "Premium News" Customizing everything is really easy, but for some reason the featured images aren't showing up right: http://demo.woothemes.com/?name=premiumnews - ...
4
votes
3answers
295 views

Positioning Screen (Contextual) Help Tabs

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() { ...
0
votes
1answer
169 views

Customizing contextual help for every page

How can i change the content of the help section for all of my admin pages? I've removed a lot of the admin that won't be used, but i want to add information to the help section for the additional ...
1
vote
2answers
194 views

Custom metabox field help tips popups

Is there anything built-in to core that displays a little (?) icon next to admin-side input fields (custom metabox input fields, for example) that provide tooltips or a contextual help popup when ...
0
votes
1answer
74 views

Editing Help Section

I was trying to find the contextual help section for all the admin pages so I could add some additional text. The main pages I need to hit are the "Pages" page and the "Widgets" page but I'm not sure ...
1
vote
1answer
204 views

Where can I edit Admin Panel Page file

I need to edit the "Help" section of the "Page" page in the Admin panel. Since wordpress doesn't allow multiple line breaks I need to make sure the user knows that if they add the "" tag in the HTML ...
0
votes
1answer
111 views

Issue with contextual help overwriting existing content

I'm missing something here: function page_help($contextual_help, $screen_id, $screen) { if ($screen_id == 'page') { $contextual_help = ' <h5>Shortcodes</h5> ...
0
votes
2answers
125 views

Instructions/Rules Inside Text Area

I know it is possible to change the "Enter Title Here". But is there’s a function to add text (“how to...”, “simple rules to post...”) inside the post text/input area! Any help?
2
votes
2answers
447 views

How to control contextual help section by code?

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 PHP code. My only ...