Hi,
I also notices that, please try this
Using template file calendar-small.php
https://wp-events-plugin.com/documentation/using-template-files/
if ( !empty($cell_data['events']) && count($cell_data['events']) > 0 ){
$new_title = "";
$em_event = $cell_data['events'];
foreach($em_event as $key => $val ){
$new_title .= $val->event_name."&_#_10_;";
}
}
(remove the underscore at &_#_10_;)
Paste the above snippet before this
<td class="<?php echo $class; ?>">
<?php if( !empty($cell_data['events']) && count($cell_data['events']) > 0 ): ?>
<a href="<?php echo esc_url($cell_data['link']); ?>" title="<?php echo esc_attr($cell_data['link_title']); ?>"><?php echo date('j',$cell_data['date']); ?></a>
<?php else:?>
<?php echo date('j',$cell_data['date']); ?>
<?php endif; ?>
</td>
then change this line
<a href="<?php echo esc_url($cell_data['link']); ?>" title="<?php echo esc_attr($cell_data['link_title']); ?>"><?php echo date('j',$cell_data['date']); ?></a>
with this
<a href="<?php echo esc_url($cell_data['link']); ?>" title="<?php echo $new_title; ?>"><?php echo date('j',$cell_data['date']); ?></a>
Note: this will ignore the title separator option in the em settings page