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>

    saguaros

    .item-podcast.type-2 .episode-timeline {
    display: none;
    }
    Not work

    It's weird. I just added this code into your site and the timeline is hidden now.

    Kindly check again.

    Write a Reply...
    You need to Login to view replies.