Skip to main content
Best Answer

Hiding parts of "My Profile"

  • July 23, 2026
  • 8 replies
  • 46 views

Forum|alt.badge.img+1

There are parts of the new My Profile that we don’t want visible. I can’t figure out what element to target with CSS. Any ideas?

Best answer by ariel.zimmerman

I figured it out! 

/** Hiding "Companion" from My Profile **/

#vertical-tab-companion {

  display: none !important;

}



/** Hiding "Content Partners Affiliation" from My Profile **/

#vertical-tab-contentpartnersapp {

  display: none !important;

}

 

8 replies

dklinger
Hero III
Forum|alt.badge.img+13
  • Hero III
  • July 23, 2026

what are you looking to hide? Call them out...I have some experience with this.

this can help hide activities in the sidebar for example: 

/*Hide Activities That We Dont Want To Show In User Profile*/

.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(6),

.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(8),

.myactivities-sidebar > .sidebarred > .sidebar ul li:nth-child(9)

{display:none !important;}

 

 


Forum|alt.badge.img+1

I know how to hide things on My Activities, but those are list items and the My Profile page isn’t set up that way (from what I can tell). I want to hide the “Content Partners Affiliation” and “Companion” parts.


dklinger
Hero III
Forum|alt.badge.img+13
  • Hero III
  • July 23, 2026

My apologies, I thought you were talking about my activities. I am following you now.


dklinger
Hero III
Forum|alt.badge.img+13
  • Hero III
  • July 23, 2026

Hi so you can hide the companion part using a configurable in the launchpad for the companion….no need for custom css there.

I dont have the content partners affiliation one on my end? So that may be a configurable as well. I keep on scrubbing the ecommerce help...and it is coming up blind.

https://help.docebo.com/hc/en-us/articles/360020082200-Managing-Content-partners

 


Forum|alt.badge.img+1

I figured it out! 

/** Hiding "Companion" from My Profile **/

#vertical-tab-companion {

  display: none !important;

}



/** Hiding "Content Partners Affiliation" from My Profile **/

#vertical-tab-contentpartnersapp {

  display: none !important;

}

 


dklinger
Hero III
Forum|alt.badge.img+13
  • Hero III
  • July 24, 2026

Nice ​@ariel.zimmerman - just keep in mind - the companion one is a configurable.


Forum|alt.badge.img+1

Nice ​@ariel.zimmerman - just keep in mind - the companion one is a configurable.

I know, but I’m not sure if we’re experimenting with it so don’t want it accessible at this time. 


  • Novice II
  • July 24, 2026

Thanks ​@ariel.zimmerman & ​@dklinger! I didn’t realize that Companion was by default visible to learners on their profile (it really shouldn’t be).