Browse: Home / Snippets /

Hide course points from the ld_profile shortcode display

Contents


Snippet #

Important: All snippets are provided as-is without support or guarantees. These snippets are provided as guidelines for advanced users looking to customize LearnDash. For any additional help or support with these snippets, we recommend reaching out to a LearnDash Expert.

/*
 * 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;
}