How to hide Learndash Course Points

If you need to hide , course points from the student’s profile in a Learndash Course, you can easily do with the following snippet code . It is advised that the snippet should be tried on child theme’s style.css file or in CSS customizer of your theme

Learndash snippet Code for hiding course point

/*
 * Add this snippet to your child theme's style.css file or to your theme customizer CSS
 * Hides the course points from the user profile
 *
 */

.learndash-wrapper .ld-profile-summary .ld-profile-stats .ld-profile-stat:last-child {
	display: none;
}

.learndash-wrapper .ld-profile-summary .ld-profile-stats .ld-profile-stat:nth-child(3) {
	border-right: none;
}

Demo Video to hide Course Point