Hola Matias, como estas?
Gracias por ponerte en contacto con nosotros! Me tome la libertad de contestarte en español ya que la evidencia indica que este es tu idioma nativo 😉
Con respecto a tu consulta, esto puede lograrse filtrando el titulo con el siguiente snippet:
/* Tribe, change month view title to be Month + Year */
function tribe_custom_title ( $title ) {
if ( !tribe_is_month() ) return $title;
return ucfirst( date_i18n( tribe_get_date_option( 'monthAndYearFormat', 'F Y' ), strtotime( tribe_get_month_view_date() ) ) );
}
add_filter ( 'tribe_get_events_title', 'tribe_custom_title' );
Agrega este código al archivo functions.php en tu theme (o child-theme) y debería cambiar el formato del titulo.
Saludos, espero tu confirmación sobre la solución propuesta,
Nico