Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Hide Dashboard from online center

Vote:
 

Is there any way we can hide Dashboard from the online center navigation? Or make CMS be the first selected?

Background is, customer do not use dashboard but always ends up there after logging in, having to click on CMS the first thing every time.

#141901
Nov 24, 2015 11:12
Vote:
 

Hi Johan,

You could set the login URL to be /EPiServer/CMS/. That way they get into edit mode directly after login.

Cheers,

Tobias

#141909
Nov 24, 2015 13:18
Vote:
 

The dashboard menu items is inserted straight from the dashboard controller so there is no simple way of configuring it out.

Personally I'd use the IIS URL Rewrite module and set a redirect up for /episerver to the edit mode URL. You can use this module on Digital Experience Cloud or if you are using IIS. The following rule should do the trick (assuming your Episerver URL is "episerver"):

<system.webServer>
  <!-- Other settings -->
  <rewrite>
    <rules>
      <rule name="Redirect Episerver dashboard URL with trailing slash to edit mode" enabled="true" patternSyntax="ExactMatch" stopProcessing="true">
        <match url="episerver/" />
        <action type="Redirect" url="/episerver/cms" redirectType="Found" />
      </rule>
      <rule name="Redirect Episerver dashboard URL without trailing slash to edit mode" enabled="true" patternSyntax="ExactMatch" stopProcessing="true">
        <match url="episerver" />
        <action type="Redirect" url="/episerver/cms" redirectType="Found" />
      </rule>
  </rules>
  </rewrite>
  <!-- Other settings -->
</system.webServer>



David

#141971
Nov 25, 2015 11:43
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.