Good morning,
I solved the issue.
Some days ago I applied a suggestion about this thread (for another issue) LINK
and I forgot to rollback the file function.php.
Trisha suggest me to add this snippet:
function tribe_translate_widget_text_filter( $translated_text, $untranslated_text, $domain ) {
//make the changes to the text
switch( $untranslated_text ) {
case 'There are no upcoming %s at this time.':
$translated_text = __( 'Something in italian','the-events-calendar' );
break;
}
return $translated_text;
}
add_filter('gettext', 'tribe_translate_widget_text_filter', 20, 3);
Once removed everything was back again working like a charm!!
Thank You
Ale