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