I’ve gone through the various steps on the Testing for Conflicts site and have noticed that the Javascript used in the mobile month view is doing a check that is setting the date_name variable to blank resulting in the output rendering as “Events For ”

Upon investigation and debugging lots of Javascript, I’ve tracked the problem down to lines 158-162 of tribe-events-ajax-calendar.js
// Backwards compatibility
// @todo "Check if we can remove this check"
if ( data.has_events ) {
data.date_name = '';
}
This renders into the minified file as well. If I comment out the data.date_name = ''; line, all starts working as normal. I’d appreciate any insight you can give or maybe this is a bug that got leftover. Happy to help in anyway I can.