Course contents initially collapsed
Is there a way to have all course topics initially collapsed?
You can use this hook,
apply_filters('fluent_community/course_section_collapse_default', 'no')
Tawsif Ahmed RiyadΒ Oh cool, thanks!
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'; });
Tawsif Ahmed RiyadΒ I applied it right away, and it works perfectly! I love it :)
Tawsif Ahmed RiyadΒ is there anyway to make the first one expanded and the rest collapsed?