themeum/tutor

tutor lms course setting difficulty level metabox

Closed this issue · 2 comments

Hi,
I want to add a more difficulty level here
image
can you please tell me where i could find the php code of this meta box?

You could use tutor_course_level filter hook to add or remove difficulty levels.

add_filter( 'tutor_course_level', function( $levels ) {
	$levels['custom_level'] = __( 'Custom Level', 'text-domain' );
	return $levels;
} );

Hi,
can you please help me again?
I need to change this button text
image