Skip to content

Instantly share code, notes, and snippets.

@rali14
Created March 4, 2020 02:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rali14/f3d571f710a8d44b7e054a67852e5bfd to your computer and use it in GitHub Desktop.
Save rali14/f3d571f710a8d44b7e054a67852e5bfd to your computer and use it in GitHub Desktop.
Hide the scoring columns from the quiz (appropriate for Survey type questions) in LearnDash
#wpProQuiz_user_content tr.categoryTr {
display: none;
}
#wpProQuiz_user_content tr > th, #wpProQuiz_user_content thead th {
display:none;
}
#wpProQuiz_user_content thead th:nth-child(1), #wpProQuiz_user_content thead th:nth-child(2) {
display: table-cell;
}
#wpProQuiz_user_content tbody th:nth-child(1), #wpProQuiz_user_content tbody th:nth-child(2) {
display: table-cell;
}
#wpProQuiz_user_content thead th:nth-child(2) {
border-top-right-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment