It’s the html5 player. Choosing the simple player the repeated title and podcast details disappear, but you loose the html5 Player.
It tries to make the player appear after the title and the abstract, but doesn’t render
and write the details of the podcast.
Maybe the php should be changed. Anybody knows?
This is the all-episode-list.php
<article class="podcast-<?php echo get_post()->ID ?> podcast type-podcast">
<h2>
<a class="entry-title-link" rel="bookmark" href="<?php echo get_post()->guid ?>">
<?php echo get_post()->post_title; ?>
</a>
</h2>
<div class="podcast-content">
<?php if ( isset( $settings['show_featured_image'] ) && 'yes' === $settings['show_featured_image'] ) { ?>
<a class="podcast-image-link" href="<?php echo get_post()->guid ?>" aria-hidden="true"
tabindex="-1">
<?php echo get_the_post_thumbnail( get_post()->ID, 'full' ); ?>
</a>
<?php } ?>
<?php if ( isset( $settings['show_episode_player'] ) && 'yes' === $settings['show_episode_player'] ) {
echo $media_player;
} ?>
<?php if ( isset( $settings['show_episode_excerpt'] ) && 'yes' === $settings['show_episode_excerpt'] ) { ?>
<p><?php echo get_the_excerpt( get_post()->ID ); ?></p>
<?php } ?>
</div>
</article>