• Resolved caemusic

    (@caemusic)


    In the version 2.7 dashboard there is a cool “help” dropdown that links to documentation and support forum.

    Has anyone found which file this is contained in? I would like to add another link to the list, as my site has a lot of customized features.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter caemusic

    (@caemusic)

    Anyone have an idea? I’ve looked through every file and have searched the whole WP directory for “Support Documents” and it doesn’t appear anywhere.

    The only thing I’ve found is some js for the help tab, but it only seems to be generating css:

    // help tab
    	$('#contextual-help-link').click(function () {
    		if ( ! $('#contextual-help-wrap').hasClass('contextual-help-open') ) {
    			$('#screen-options-link-wrap').addClass('invisible');
    		}
    		$('#contextual-help-wrap').slideToggle('fast', function(){
    			if ( $(this).hasClass('contextual-help-open') ) {
    				$('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
    				$('#screen-options-link-wrap').removeClass('invisible');
    				$(this).removeClass('contextual-help-open');
    			} else {
    				$('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
    				$(this).addClass('contextual-help-open');
    			}
    		});
    		return false;
    	});
    Thread Starter caemusic

    (@caemusic)

    I finally found it, not sure why it didn’t show up in my search..

    It’s located in wp-admin/includes/template.php

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Adding Help Page to Dashboard’ is closed to new replies.