Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
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.
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>(); } } }
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
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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.
Here's an example on how to remove the getting started tab in v8.
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
is working on a reply...