Hi there,
Thanks for reaching out. I’d be happy to help with your question.
This possible with a bit of customization. You can add the following snippet to your functions.php file or in a functionality plugin:
/**
* Add a Custom Event Title to Month View
*/
add_filter('tribe_get_events_title', 'my_tribe_get_events_title', 100);
function my_tribe_get_events_title( $title ) {
if ( ! $wp_query = tribe_get_global_query_object() ) {
return;
}
if ( tribe_is_month() ) {
$title = date_i18n( tribe_get_date_option( 'monthAndYearFormat', 'F Y' ), strtotime( tribe_get_month_view_date() ) );
}
return $title;
}
This will only affect the month view. If you wanted to change the output for other views, you could add that to this function.
Hope that helps! Please let me know if you have any additional questions about this.
Thanks,
Sky