The only thing you can do here is modify the admin/splash.aspx.cs page to not show that panel to certain users. For example, you can make this only available to super admins by adding the following code in the Page_Load method in splash.aspx.cs
Code:
if (!ThisCustomer.IsAdminSuperUser)
{
pnlCommonLinks.Visible = false;
}
If you wanted to create a customer level that you'll apply to all of your admin users that can see the panel of common links, you could do something like
Code:
if (ThisCustomer.CustomerLevelID == #)
{
pnlCommonLinks.Visible = false;
}
where # is the ID of the customer level you've created for your admin users.
<a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>