Ok, I resolved my problem.
For the future, if someone will have the same problem:
In functions.php
Change
$posted_on = '<a class="entry-date" href="'.esc_url(get_permalink()).'" title="'.esc_attr(get_the_time()).'" rel="bookmark">'.date_i18n('jS M, y', strtotime(esc_html(get_the_date()))).'</a> ';
to
$posted_on = '<a class="entry-date" href="'.esc_url(get_permalink()).'" title="'.esc_attr(get_the_time()).'" rel="bookmark">'.the_time('j F Y').'</a> ';
If you want that time-icon show properly you must do some CSS changes ??