Skip to main content
Best Answer

Companion Button on My Profile - Has anyone found a way to hide this?

  • April 29, 2026
  • 2 replies
  • 42 views

lrnlab
Hero III
Forum|alt.badge.img+10

With the launch of Companion, I was surprised to see the button under my profile that allows the user to self-configure access to the extension. Tried a dozen different CSS options to hide this button and while it  seems to work in dev mode, when I load the code, the button continues to appear. Anyone had any luck hiding it permanently?

Reason we would like to hide it is we need to test it and prepare a comm plans before we allow users to use it. Especially where we have no spaces prepared, and there also seems to be an issue with only providing the user with the root url - does not understand the concept of the sub domains (for extended enterprise)

 

 

Best answer by lrnlab

Hi Ziv, I had tried that before and it didn't work but when I added to a site where no other CSS was in place, it worked. So notice to those who try this code...if it doesn't work, I was able to get it functional by moving this code to very top of the list of other CSS code. That seems to have solved it. Thank you.

2 replies

Forum|alt.badge.img+2
  • Helper I
  • April 30, 2026

This code worked for me in Sandbox:

#vertical-tab-companion {
display: none !important;
}

I did not check if it hides other things in the platform, so make sure to test it.


lrnlab
Hero III
Forum|alt.badge.img+10
  • Author
  • Hero III
  • Answer
  • April 30, 2026

Hi Ziv, I had tried that before and it didn't work but when I added to a site where no other CSS was in place, it worked. So notice to those who try this code...if it doesn't work, I was able to get it functional by moving this code to very top of the list of other CSS code. That seems to have solved it. Thank you.