Skip to main content
Best Answer

Badges - Event column

  • July 24, 2024
  • 2 replies
  • 29 views

Forum|alt.badge.img+1

Hi! Is there a way to get rid of the Event column under My Activities> Badges? Thanks!

Best answer by Ian

This custom CSS should do the trick:

#badges-management-grid_c4, #badges-management-grid tr td:nth-child(5) {
display: none;
}

There is a standard caveat to be applied here re: the nth-child() selector, which is that if Docebo would update the table such that the Event was no longer the 5th child, you’d end up hiding whatever was the 5th child instead. You typically wouldn’t be notified about such changes, either.

In practice the above probably applies to the column header as well (id="badges-management-grid_c4"), because the ID is clearly tied to the position in the table.

With all that said, in this specific case I’d be pretty surprised if Docebo’s developers had any intention whatsoever of touching this page in its current form. It’s a legacy page, and I’d expect that any maintenance efforts would be redirected towards completely refactoring this or some other legacy feature.

2 replies

Ian
Guide I
  • Guide I
  • Answer
  • July 24, 2024

This custom CSS should do the trick:

#badges-management-grid_c4, #badges-management-grid tr td:nth-child(5) {
display: none;
}

There is a standard caveat to be applied here re: the nth-child() selector, which is that if Docebo would update the table such that the Event was no longer the 5th child, you’d end up hiding whatever was the 5th child instead. You typically wouldn’t be notified about such changes, either.

In practice the above probably applies to the column header as well (id="badges-management-grid_c4"), because the ID is clearly tied to the position in the table.

With all that said, in this specific case I’d be pretty surprised if Docebo’s developers had any intention whatsoever of touching this page in its current form. It’s a legacy page, and I’d expect that any maintenance efforts would be redirected towards completely refactoring this or some other legacy feature.


Forum|alt.badge.img+1
  • Author
  • Influencer III
  • July 24, 2024

@Ian Thank you!