How to remove "Edit Profile" for users?

  • 21 November 2019
  • 2 replies
  • 191 views

I'm trying to remove "Edit Profile" for users, any idea on how to do that? 



2 replies

Badge +2

I don't know if you can change it in your admin portal, but I do know that you can do it with code:


image


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


image



 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 @Wimthis can be achieved via the portal customization as per the steps mentioned below:


- Navigate to Admin >> Portals >> Customize portals >> Stylesheet >> Paste the below code.


a[href$="/support/profile/edit"]{

display:none;

}


Hope this helps!


Reply