1. add_filter('wpseo_title','my_custom_titles');
  2. function my_custom_titles($title) {
  3.   if( tribe_is_event() ){
  4.     $title = 'Winter is coming';
  5.   }
  6.   return $title;
  7. }