I'm trying to remove "Edit Profile" for users, any idea on how to do that?
I don't know if you can change it in your admin portal, but I do know that you can do it with code:
Your code for "edit profile" has been put into this snippet in your header, so you cannot change this.
You can choose to remove this snippet and create a welcome navigation yourself, but it's easier to hide the "edit profile" button / link with css
If you look at the link of "profile edit" with element inspect you see that you don't have a class or id to hide it, so I would do it like this:
a>href^="/support/profile/edit"]{
display:none;
}
I hope you can do something with this, good luck!
Hello Victoria,
We do not have the option to directly hide the "Edit portal" . However, as mentioned by
- Navigate to Admin >> Portals >> Customize portals >> Stylesheet >> Paste the below code.
a[href$="/support/profile/edit"]{
display:none;
}
Hope this helps!
Reply
Sign in to the Community
Social Login
Login for Freshworks Employees Login with LinkedInEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.