Skip to main content
Best Answer

Hide Score from my activities page

  • August 7, 2024
  • 4 replies
  • 88 views

Hi,

Looking to hide the Score on the My Activities page under courses, ILT  and external training.

Does anyone know how to do this so its the how column and not just the title.

 

Best answer by gstager

@Sophie.Johnson 

Give this a spin. Always be sure to verify that changes do not affect other parts of your system.

/** This will hide the Score Header **/
#course-management-grid_c8 {
display: none;
}

/** This will hide the cells under the Score Header **/
#course-management-grid > div.gridItemsContainer > table > tbody > tr > td:nth-child(9) {
display: none;
}

 

4 replies

gstager
Hero III
Forum|alt.badge.img+8
  • Hero III
  • Answer
  • August 7, 2024

@Sophie.Johnson 

Give this a spin. Always be sure to verify that changes do not affect other parts of your system.

/** This will hide the Score Header **/
#course-management-grid_c8 {
display: none;
}

/** This will hide the cells under the Score Header **/
#course-management-grid > div.gridItemsContainer > table > tbody > tr > td:nth-child(9) {
display: none;
}

 


Thank you so much!!


Forum|alt.badge.img
  • Contributor III
  • April 3, 2025

@gstager any chance you have a CSS for hiding the score from the external training page only?? Since your a wizz.


gstager
Hero III
Forum|alt.badge.img+8
  • Hero III
  • April 3, 2025

@talya.pacheco - no whizz - I just know enough to be dangerous and occasionally get what I want.

Give this a try.

As always be sure to check other areas to be sure there aren’t any unwanted results from CSS modification.

/** This will hide the Score Header **/
#transcripts-management-grid_c3 {
display: none;
}

/** This will hide the cells under the Score Header **/
#transcripts-management-grid > div.gridItemsContainer > table > tbody > tr > td:nth-child(4) {
display: none;
}