Thanks for reaching out, and we are here to give you a hand with your problem.
Based on the description of your issue you are looking in a way to customize the month views, we have a useful guide for Themer’s that you might find useful, however I also give a test on a clean environment with default WordPress theme and seems like the calendar is displaying:
- EventsĀ forĀ {Month} {Year}
Which means your theme or any other plugin is causing this problem, we suggest for you to test for any possible conflict with any theme or plugin.
Also as you asked for a way to customize the title, as mentioned above you can follow the Themer’s guide along to do this or you can use the filter:
tribe_events_title
As follows to change the title before is printed in screen.
function tribe_events_title_month( $title ) {
return $title;
}
add_filter( 'tribe_events_title', 'tribe_events_title_month' );
Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.
Thanks,
Crisoforo