Copied to clipboard

Flag this post as spam?

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


  • Fabio Consonni 2 posts 72 karma points
    Nov 14, 2019 @ 15:40
    Fabio Consonni
    0

    Remove Getting Started Tab in backoffice

    Hi all,

    excuse me but I'm new in Umbraco.

    I understood to create a new Dashboard Tab in the backoffice with package.manifest but...

    how can I remove the default "Getting Started" Tab?

    Thanks to all,

    Fabio.

  • bdsoko 4 posts 94 karma points
    Nov 14, 2019 @ 18:42
    bdsoko
    1

    Here's an example on how to remove the getting started tab in v8.

    namespace MyProject.Composers
    {
        [RuntimeLevel(MinLevel = RuntimeLevel.Run)]
        public class MyComposer : IUserComposer
        {
            public void Compose(Composition composition)
            {
                composition.Dashboards().Remove<ContentDashboard>();
            }
        }
    }
    
  • Paul Bowen 11 posts 76 karma points
    Feb 02, 2020 @ 22:39
    Paul Bowen
    1

    Hi, for others coming here, bdsoko's solution works - thanks for that but if you want to know more about how it works and other dashboard customisations then there is an Umbraco article on the subject. It includes the above example.

    https://our.umbraco.com/documentation/extending/dashboards/

    Cheers, Paul

Please Sign in or register to post replies

Write your reply to:

Draft