Skip to main content
Question

removing LP details

  • June 12, 2026
  • 1 reply
  • 71 views

Forum|alt.badge.img+1

I want to remove this learning plan details section visible to users. Does anyone have CSS that has worked for them for this task? 

1 reply

  • Newcomer
  • June 12, 2026

Hey kbella! 

You can use this to hide it across all learning plans:

.lrn-widget-content-details-expandable{
display: none;
}

Or use this to hide it on individual learning plans:

.lrn-learning-plan-overview-<learning plan id> .lrn-widget-content-details-expandable{
display: none;
}

Easiest way to find the learning plan ID is just to get it from the URL:


Hope this helps!

Eric