Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • So I made a back up from this lines deleted in a txt for any issues in the future.. ??

    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;
    });

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