Hello, how are you?
Is there any way that Course Curriculum is expanded by default on the course selling page?
https://www.pindorama.org.br/course/curso-de-permacultura-negocios-sustentaveis/
Thanks a lot for your help!
Regards,
Nilson Dias
Thanks Diana! No way to have all sections expanded, right?
@institutopindrorama,
To expand all the sections of your course curriculum, just replace the code with the below code.
jQuery(document).ready(function($){
setTimeout(function(){
$('body').find('.course_curriculum .course_section>td').trigger('click');
},1000);
});