Dear @keraisin67
Yes, there is a way to hide the prefilled “Lesson 1,” “Lesson 2,” etc. names in the course builder of Tutor LMS. You can achieve this by adding a custom code snippet to your WordPress theme’s functions.php file or via a custom plugin. Here’s an example of the code snippet you can use:
function hide_tutor_lesson_titles() {
remove_action( ‘tutor_lesson_builder/before/lesson_output’, ‘tutor_lesson_title_output’ );
}
add_action( ‘init’, ‘hide_tutor_lesson_titles’ );
This code snippet removes the action responsible for outputting the lesson titles in the course builder, effectively hiding them from view. After adding the code, the prefilled “Lesson 1,” “Lesson 2,” etc. names should no longer be displayed, reducing any confusion with your own lesson titles.
Please note that adding custom code to your website should be done with caution. Make sure to create a backup of your site before making any changes and consider testing the code on a staging site first to ensure compatibility and avoid any potential issues.
If you need further assistance or have any other questions, please feel free to ask.