wilcosky
This actions on disable the help from dashboard. Howhever the help buttom still there.
To disable the help menu you must go to 143 line in the same file and dele this lines:
// screen settings tab
$(‘#show-settings-link’).click(function () {
if ( ! $(‘#screen-options-wrap’).hasClass(‘screen-options-open’) ) {
$(‘#contextual-help-link-wrap’).addClass(‘invisible’);
}
$(‘#screen-options-wrap’).slideToggle(‘fast’, function(){
if ( $(this).hasClass(‘screen-options-open’) ) {
$(‘#show-settings-link’).css({‘backgroundImage’:’url(“images/screen-options-right.gif”)’});
$(‘#contextual-help-link-wrap’).removeClass(‘invisible’);
$(this).removeClass(‘screen-options-open’);
} else {
$(‘#show-settings-link’).css({‘backgroundImage’:’url(“images/screen-options-right-up.gif”)’});
$(this).addClass(‘screen-options-open’);
}
});
return false;
});