Skip to main content

Course contents initially collapsed

Is there a way to have all course topics initially collapsed?

Tawsif Ahmed Riyad

You can use this hook,
apply_filters('fluent_community/course_section_collapse_default', 'no')

Sebastian Weiss

Tawsif Ahmed RiyadΒ Oh cool, thanks!

Tawsif Ahmed Riyad

Sebastian Weiss, welcome. Here's the snippet, use it to make all course topics initially collapsed.

add_filter( 'fluent_community/course_section_collapse_default', function( $default ) { return 'yes'; });

Sebastian Weiss

Tawsif Ahmed RiyadΒ I applied it right away, and it works perfectly! I love it :)

Thomas

Tawsif Ahmed RiyadΒ is there anyway to make the first one expanded and the rest collapsed?