Course Bundle
Subscriptions
Memberships
Gift Course
Tutor LMS Shortcodes
Course Bundle
Subscriptions
Memberships
Gift Course
Tutor LMS Shortcodes

Editing or Adding More Course Levels

If you want to change the names of the existing course levels in Tutor LMS, please paste this code to your theme’s functions.php file. In this example code, we changed Beginner to Newbie, Intermediate to Rookie, and Expert to Professional.

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;
    }
}

If you want to add more levels to the existing 3, use this code instead. Here, we’re adding 2 new levels to the existing ones.

add_filter('tutor_course_level', 'add_extra_course_level');
if ( ! function_exists('add_extra_course_level')){
function add_extra_course_level($levels){
    $levels['extra-level-1'] = "Professional";
    $levels['extra-level-2'] = "Open for All";
    return $levels;
    }
}

Join the world’s #1 Tutor LMS community

Build, manage, and scale your eLearning business with the most powerful WordPress LMS — all in one place.

Crafted by Humans

© 2026 All Rights Reserved