Course teacher

Home Forums Calendar Products Events Calendar PRO Course teacher

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1072125
    Arto
    Participant

    I want to use your plugins for a course platform. I would like to add the course instructor. Should I use the organizer feature? If yes, how can I rename “organizer” to “course instructor” for example…?

    #1072151
    George
    Participant

    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

    #1072359
    Arto
    Participant

    Thanks for the reply. Is that the same process if I want to use the German version?

    #1072870
    George
    Participant

    Hey @Arto,

    Can you clarify what you mean when you say “the German Version”?

    In most cases of what that phrase might mean, the answer is “yes”, but I’m curious what exactly you mean. Are you using WPML or a similar plugin to offer two different versions of your site, for example? In this case, you may unfortunately encounter some bugs because we do not fully support WPML at this time.

    Any extra information here would be helpful.

    Thank you!
    George

    #1083403
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Course teacher’ is closed to new replies.