Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Zohaib 7 posts 27 karma points
    May 30, 2011 @ 13:49
    Zohaib
    0

    Hide Help Button and Get Started Tab from umbraco backend

    Hi All,

    How to hide "help button" and "Get Started" tab from umbraco backend. Any help in this is much appreciated.

    Regards,

    Zohaib

  • Tim 1193 posts 2675 karma points MVP 3x c-trib
    Jun 01, 2011 @ 13:06
    Tim
    0

    You can edit the page "/umbraco/umbraco.aspx" and add a style to the buttons to set them to display:none. I wuldn't remove them completely, as that might break the context sensitive help. You could also add JQuery to hide the buttons if you wanted to.

  • Frost 70 posts 99 karma points
    Nov 03, 2011 @ 18:49
    Frost
    0

    The Get Started tabs are pretty easy to hide too. Navigate to config/Dashboard.config and edit in notepad.

    Each content area (these are the icons that appear at the bottom right of the back office under Sections ... "Content", "Media" etc) has it's own Get Started tab, so you'll have to comment them out individually.

    I'm only concerned about the Get Started tab for the Content section area. Below is the part that I commented out.

        <areas>
          <area>content</area>
        </areas>
    <!--
        <tab caption="Get Started">
          <control showOnce="true" addPanel="true" panelCaption="">
            /umbraco/dashboard/startupdashboardintro.ascx
          </control>
          <control showOnce="true" addPanel="true" panelCaption="">
            /umbraco/dashboard/startupdashboardkits.ascx
          </control>
          <control showOnce="true" addPanel="true" panelCaption="">
            /umbraco/dashboard/startupdashboardvideos.ascx
          </control>
        </tab>
    -->

    That'll do it! It's wise to make a backup copy of Dashboard.config in case you mess it up so that you can revert easily.

Please Sign in or register to post replies

Write your reply to:

Draft