• In wordpress 2.7 on the dashboard, there is a help tab in the upper right corner. When you expand it, it has two links to online support and documentation, I would like to change the pages these link to. Where are these links stored if I wanted to change them? Any help would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’ve also been looking for a solution for this… until I figure out where the code is to change the links, I’ve decided to hide the help tab instead with css using display: none;

    #contextual-help-link-wrap {
    	float: right;
    	background: transparent url( images/screen-options-left.gif ) no-repeat 0 0;
    	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
    	height: 22px;
    	padding: 0;
    	margin: 0 6px 0 0;
            display: none;
    }

    I was finally able to locate this:

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Dashboard Help Tab – Changing Links’ is closed to new replies.