Hey @Arto!
Using organizers is a great option here; in fact, quite a few people do stuff like this with our plugins, and so we’ve made it very easy to change “organizer” to “course instructor” throughout our plugins.
To do that, you’d just have to copy a code snippet like this one into your theme’s functions.php file:
add_filter( 'tribe_organizer_label_singular', 'change_single_organizer_label' );
function change_single_organizer_label() {
return 'Course Instructor';
}
add_filter( 'tribe_organizer_label_plural', 'change_plural_organizer_label' );
function change_plural_organizer_label() {
return 'Course Instructors';
}
That’ll change all instances of “Organizer” to “Course Instructor,” and the plural form “Organizers” to “Course Instructors.”
I hope that helps!
— George