Best Answer

Can tags be hidden?

  • 17 August 2021
  • 6 replies
  • 366 views

Userlevel 3
Badge

I understand the usefulness of tags for search. However once a learner arrives at a video, the need to show the tags is not important. Is it possible to hide the tags?

icon

Best answer by nick.tosto 17 August 2021, 18:37

View original

6 replies

Userlevel 6
Badge +2

You should be able to hide the tags with CSS. This code should hide it in the information area beneath the course player:

 

chapter-information .chapter-tags-wrapper {
display: none;
}

 

Just add that to the Custom Styles area in Configure Branding & Look and it should no longer show.

Userlevel 3
Badge

Nick,

Three things:

  1. Thank you
  2. I hope you don’t rue the day I created an account here
  3. I need to put you on a retailer or Docebo should put you on the payroll for your assistance

Thanks again for the quick and accurate response.

Userlevel 7
Badge +6

This is especially important when you forget to go back and delete bad tags.

The learner certainly does not need to see that...

Before CSS:

After CSS:

 

Badge

We have the new course player, which I assume is why this code isn’t working for us. I’m trying to find the CSS element that the new course player uses for the tags section, but I’m not having any luck. Any ideas?

Userlevel 7
Badge +6

You should be able to disable now from within the admin section.

Hope that helps.

 

 

Badge

@gstager thank you! We don’t want to turn it off, as the searchability will be helpful, but we don’t want them visible on the courses. I think I found the right elements and got them to hide. Yay for exploring CSS!

 

lrn-course-player-widgets-area .lrn-course-player-lesson-tags-title {

  display: none !important;

}

lrn-course-player-widgets-area .lrn-course-player-lesson-tags

{

  display: none !important;

}

Reply