How can I set the list of students in course not to all, but only the ones that have already started ('continu' I think it is)?
See screenshot
yes its continue course which is you need to select there in the filter section .
No, I mean that is standard set to continue course students. Now I have to select filter and change selection. Is it possible that it's already set at continue course.
please try adding this given code in your wplms-customizer.php file in wplms customizer plugin :
add_action('wp_footer',function (){
?>
<script>
jQuery(document).ready(function(){
jQuery('form#course_user_ajax_search_results select#course_status').val(2);
jQuery('form#course_user_ajax_search_results select#course_status').trigger('change');
});
</script>
<?php
});
Unfortunately, it didn't do anything. Or at least not where it should :)
Any idea how to fix it?