• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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