Question

Hide upload option for Avatar image in My Profile


Userlevel 1
Badge

Dear Team,

Our platform is used by internals and externals. Is there possible to hide the “Avatar image upload” on my profile page? If yes, it could be better option for us.


3 replies

Userlevel 7
Badge +3

Hi @Sasikumaar, thank you for this idea. We believe it’s important for users to be able to upload their avatar images in their profile. As this isn’t a feature Docebo would consider building, I’m going to convert this idea into a question and share it in our HTML & CSS category.

 

Perhaps @gstager could help you by sharing a way to hide the Select Image option in the Avatar section of the Personal Info tab of the My Profile page.

Userlevel 1
Badge

Hi Adam,

Thanks for responding to my comments.

My question is about the “HIDE / REMOVE THE AVATAR IMAGE”  option on My profile page. 

Regards,

Sasikumaar

Userlevel 7
Badge +5

Here are a couple options you can try. Be sure to test other areas to ensure that nothing else is removed that is not meant to be removed.

/** Remove the SELECT IMAGE button from profile block **/

div.direction ui-button-outlined {
display: none;
}

If you wish to remove the avatar part completely you could try this

/** Remove Avatar box from My Profile **/

lrn-my-profile-personal-info {
display: none;
}

Hope this helps.

Reply