carlucci Hi
You can use this custom CSS code to hide that section:
.item-podcast.type-2 .episode-timeline {
display: none;
}
If you want to remove in code, you can open file: /templates/ja_podcast/html/com_content/article/podcast-2.php
and remove code line 180-198:
<div class="episode-timeline">
<h3><?php echo Text::_('TPL_TITLE_EPISODE_TIMELINE'); ?></h3>
<?php
$posTime = $extrafields->get('pos-timeline');
if(!empty($posTime)) :?>
<div class="pos-timeline">
<ul>
<?php $i=0; foreach ($posTime as $key=>$value) : $i++; ?>
<li>
<span class="hight"><?php echo $value->pos_time; ?></span>
<span class="txt"><?php echo $value->pos_info; ?></span>
</li>
<?php endforeach ;?>
</ul>
</div>
<?php endif ;?>
</div>