Remove Member Count/Avatars
.bb-single-course-sidebar .bb-course-member-wrap {
display: none;
}
Remove Course Status
.bb-course-preview-content .bb-course-status-wrap {
display: none;
}
Remove “Course Includes” Info
This will remove ALL “course includes” info.
.bb-course-preview-content .bb-course-volume {
display: none;
}
It is possible to remove individual lines within the “course includes” section, but it will depend on how many lines you have displayed. If you don’t use topics, there will not be a line for topics. Same thing if you aren’t offering a certificate for the course.
Look at how many lines you have, and use the following code to remove the lines you want to remove. Change the number inside nth-child()
to correspond to the line you want to remove.
.bb-course-preview-content .bb-course-volume li:nth-child(1) {
display: none;
}