How to change all occurance of Events to Programs

Home Forums Calendar Products Events Calendar PRO How to change all occurance of Events to Programs

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #108260
    Ryan
    Participant

    Is there a global way of renaming the terminology from Events to Programs?
    Where can this be changed?

    #108909
    Kelly
    Participant

    Hi, ryanb. Great question! 🙂

    Here’s a quick snippet you could add to your theme’s functions.php to change the word Events everywhere:

    add_filter( 'gettext', 'replace_events_with_something' );
        function replace_events_with_something( $text ) {
        return str_replace( 'Events', 'Keyword', $text );
    }

    You’d just replace “Keyword” (not including the single quotation marks) with “Programs” or whatever other text string you had in mind. Please be aware, that function will be called for every translated string on your site. That may or may not be important to you, but you should know, just in case you get odd results.

    Hope that helps! 🙂

    #118722
    Kelly
    Participant

    Hi, ryanb. As it’s been a couple of weeks now, I’m going to close this thread. Please start a new topic if you’d like further assistance with this issue.

    Thanks for being a TEC user!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to change all occurance of Events to Programs’ is closed to new replies.