I answer my own comment
So I modified “happy-elementor-addons/widgets/post-tab/widget.php” like that
Before
<div class="ha-post-tab-meta">
<span class="ha-post-tab-meta-author">
<i class="fa fa-user-o"></i>
<a href="<?php echo esc_url( get_author_posts_url( $post-
>post_author ) ); ?>"><?php echo esc_html(
get_the_author_meta( 'display_name', $post->post_author ) );
?></a>
</span>
<?php
$archive_year = get_the_time( 'Y', $post->ID );
$archive_month = get_the_time( 'm', $post->ID );
$archive_day = get_the_time( 'd', $post->ID );
?>
<span class="ha-post-tab-meta-date">
<i class="fa fa-calendar-o"></i>
<a href="<?php echo esc_url( get_day_link( $archive_year,
$archive_month, $archive_day ) ); ?>"><?php echo get_the_date(
"M d, Y", $post->ID ); ?></a>
</span>
</div>
After
<div class="ha-post-tab-meta">
<?php
$archive_year = get_the_time( 'Y', $post->ID );
$archive_month = get_the_time( 'm', $post->ID );
$archive_day = get_the_time( 'd', $post->ID );
?>
<span class="ha-post-tab-meta-date">
<i class="fa fa-calendar-o"></i>
<?php echo get_the_date( "j F Y", $post->ID ); ?>
</span>
</div>
It works like a charm but when I change tabs, the old layout comes back … like there is a ghost in this code …
I don’t understand and it’s beyond my capabilities
Strange isn’t it?