Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tutor lms course setting difficulty level metabox #46

Closed
Ayan008 opened this issue Feb 1, 2021 · 2 comments
Closed

tutor lms course setting difficulty level metabox #46

Ayan008 opened this issue Feb 1, 2021 · 2 comments

Comments

@Ayan008
Copy link

Ayan008 commented Feb 1, 2021

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?

@jayedul
Copy link
Contributor

jayedul commented Feb 26, 2021

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

@jayedul jayedul closed this as completed Feb 26, 2021
@Ayan008
Copy link
Author

Ayan008 commented Mar 1, 2021

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants