Best Answer

Hide Virtual Coach button in top bar using CSS

  • 14 January 2022
  • 4 replies
  • 107 views

Userlevel 3

I was wondering if anyone has CSS to remove the Virtual Coach button, so it can stay on, but not available to the users. We’ve been told that it needs to be on to learn. I noticed the beta quiz questions and started going through them and the sentence structures were not good and the questions were confusing. I love the concept, but it will be confusing to the users, especially new hires. But, we still want the Virtual Coach bot to learn. 

Thanks for your help!

Michelle

icon

Best answer by gstager 14 January 2022, 21:28

View original

4 replies

Userlevel 7
Badge +5

Give this a shot and see if it does what you need it to.

#ui-button-icon-7 {
display: none;
}

 

Userlevel 3

@gstager Thank you! It removed the icon, but not the Unread bubble. In this image it is the circle with the 1 in it. 

 

Userlevel 7
Badge +5

@gstager Thank you! It removed the icon, but not the Unread bubble. In this image it is the circle with the 1 in it. 

 

Ok - let’s give this a try… tricky...

/* hide the virtual coach icon */
div.internal-header-navigation-item.internal-header-virtual-coach.ng-star-inserted:nth-child(1n+0) {
display: none;
}

 

Userlevel 3

@gstager That worked! Thank you so much!

Reply