Rename the course levels in Tutor LMS

Rename the course levels in Tutor LMS on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter('tutor_course_level', 'modify_course_level');
        if ( ! function_exists('modify_course_level')){
        function modify_course_level($levels){
        $levels['beginner'] = "Newbie";
        $levels['intermediate'] = "Rookie";
        $levels['expert'] = "Professional";
        return $levels;
    }
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.