Title: Language / label changes?
Last modified: August 21, 2016

---

# Language / label changes?

 *  [Flexxo](https://wordpress.org/support/users/flexxo/)
 * (@flexxo)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/language-label-changes/)
 * Hello! I love this add-on to The Events Calendar but I am searching for an option
   to change the text displayed in front of private events in the calendar view (
   month).
 * There is the text “private: ” in front of the event title and I want to change
   this to something like “internal only: “.
 * But where to look? Thanks in advance!
 * [http://wordpress.org/plugins/the-events-calendar-private-category/](http://wordpress.org/plugins/the-events-calendar-private-category/)

Viewing 1 replies (of 1 total)

 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/language-label-changes/#post-4264251)
 * This is actually controlled by the WordPress core, inside the get_the_title()
   function.
 * Try this hook in your theme functions file:
 *     ```
       /**
        * Tribe Events: Replace 'Private: ' title prefix from events
        */
       function tribe_events_remove_post_status($title, $id) {
   
         $cpt = get_post_type();
         if($cpt == 'tribe_events') {
           $title = str_ireplace('Private:', 'Internal Only:', $title);
         }
         return $title;
       }
       add_filter('the_title', 'tribe_events_remove_post_status', 10, 2);
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Language / label changes?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/the-events-calendar-private-category.
   svg)
 * [The Event Calendar: Private Category](https://wordpress.org/plugins/the-events-calendar-private-category/)
 * [Support Threads](https://wordpress.org/support/plugin/the-events-calendar-private-category/)
 * [Active Topics](https://wordpress.org/support/plugin/the-events-calendar-private-category/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/the-events-calendar-private-category/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/the-events-calendar-private-category/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/language-label-changes/#post-4264251)
 * Status: not resolved