• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Custom Logout

A

amiles248

Guest
Does anyone know if there is a way to re-map the URL of the "Go to Admin Panel" and "Logout" buttons in Sitebuilder? I would prefer that my end users not see the sitebuilder admin screen or login screen at all.
 
Hello,
You cannot change url links, but you can hide them from user via Sitebuilder SDK, Skins part. Using this part you can customize Sitebuilder elements design. Find there skin ids "ToolBarAdmin" and "ToolBarLogout", and set style properties such that these buttons become invisible.
 
Still need help

After searching around I found that the ToolBarAdmin and ToolBarLogout parameters are in the IconButton.skin file. I replaced the images with blank images, however the text still appears. How can I get rid of the text and therefore the link?

The parameters in this file appear to only deal with the icons and not the text of the links.





<%-- Wizard Header Tool bar buttons --%>
<SiteBuilder:IconButton SkinID="ToolBarHelp" runat="server" IconImageUrl="icons/help.png" OverIconImageUrl="icons/help.png" Height="100%" IconImageHeight="16" IconImageWidth="16">
<IconCellStyle BackColor="#DBDBDB" PaddingTop="5" PaddingRight="5" PaddingBottom="5" PaddingLeft="10"/>
<RightSeparatorStyle Width="0"/>
<LeftSeparatorStyle Width="0"/>
<TextCellStyle CssClass="sb-tools-text"/>
</SiteBuilder:IconButton>
<SiteBuilder:IconButton SkinID="ToolBarSupport" runat="server" IconImageUrl="icons/support.png" OverIconImageUrl="icons/support.png" Height="100%">
<IconCellStyle BackColor="#DBDBDB" PaddingTop="5" PaddingRight="5" PaddingBottom="5" PaddingLeft="10"/>
<RightSeparatorStyle Width="0"/>
<LeftSeparatorStyle Width="0"/>
<TextCellStyle CssClass="sb-tools-text"/>
</SiteBuilder:IconButton>
<SiteBuilder:IconButton SkinID="ToolBarFeedback" runat="server" IconImageUrl="icons/feedback.gif" OverIconImageUrl="icons/feedback.gif" Height="100%">
<IconCellStyle BackColor="#DBDBDB" PaddingTop="5" PaddingRight="5" PaddingBottom="5" PaddingLeft="10"/>
<RightSeparatorStyle Width="0"/>
<LeftSeparatorStyle Width="0"/>
<TextCellStyle CssClass="sb-tools-text"/>
</SiteBuilder:IconButton>
<SiteBuilder:IconButton SkinID="ToolBarLogout" runat="server" IconImageUrl="icons/logout.png" OverIconImageUrl="icons/logout.png" Height="100%">
<IconCellStyle BackColor="#DBDBDB" PaddingTop="5" PaddingRight="5" PaddingBottom="5" PaddingLeft="10"/>
<RightSeparatorStyle Width="0"/>
<LeftSeparatorStyle Width="0"/>
<TextCellStyle CssClass="sb-tools-text" PaddingRight="10" />
</SiteBuilder:IconButton>
<SiteBuilder:IconButton SkinID="ToolBarAdmin" runat="server" IconImageUrl="icons/admin_panel.png" OverIconImageUrl="icons/admin_panel.png" Height="100%">
<IconCellStyle BackColor="#DBDBDB" PaddingTop="5" PaddingRight="5" PaddingBottom="5" PaddingLeft="10"/>
<RightSeparatorStyle Width="0"/>
<LeftSeparatorStyle Width="0"/>
<TextCellStyle CssClass="sb-tools-text"/>
</SiteBuilder:IconButton>
 
Try Visible="False" attribute:

<SiteBuilder:IconButton Visible="False" SkinID="ToolBarAdmin" runat="server" IconImageUrl="icons/admin_panel.png" OverIconImageUrl="icons/admin_panel.png" Height="100%">
<IconCellStyle BackColor="#DBDBDB" PaddingTop="5" PaddingRight="5" PaddingBottom="5" PaddingLeft="10"/>
<RightSeparatorStyle Width="0"/>
<LeftSeparatorStyle Width="0"/>
<TextCellStyle CssClass="sb-tools-text"/>
</SiteBuilder:IconButton>
 
Back
Top