Hi,
New to sitejet. How do I change the menu options that my clients see when they login to their portal? Instead of “Website” as a menu item, can I change this to “Digital Products”?
Hi,
New to sitejet. How do I change the menu options that my clients see when they login to their portal? Instead of “Website” as a menu item, can I change this to “Digital Products”?
Hello, this can be only done with CSS. You can try with this code inside custom code for the customer portal under whitelabel settings.
<style>
.sidebar_menu h3:nth-of-type(2) {
visibility: hidden;
position: relative;
}
.sidebar_menu h3:nth-of-type(2)::after {
visibility: visible;
position: absolute;
top: 8px;
left: 26px;
content: "Digital Products";
}
</style>
Thank you very much!
@Sarita_Owens I am just curious: what do you intend to build by this?