Thanks, it seems to be solved.
Could someone help me with this issue please?
I have solved this bug coding the file /wp-content/themes/mytheme/tribe-events/month/single-event.php:
In line 22 after “global $post;” I have added two variables:
$enlaceEvento = tribe_get_event_link( $post );
$textoEvento = get_the_title();
In line 196 I use these variables:
<h3 class="tribe-events-month-event-title entry-title summary"><a href="<?php echo $enlaceEvento; ?>" class="url"><?php echo $textoEvento; ?></a></h3>
I don’t know why using the functions directly (without saving in variables) doesn’t works .
If it weren’t posible, would it be possible to get the tags of an specific post?