The fix is to upgrade to SermonSpeaker 4.x, which is better anyway.
SermonSpeaker detail Page
- Thomas Hunziker
- Offline
- Administrator
I think you forgot to open the <div class="ss-sermondetail-text ss-sermon-player"> which you close a bit later. Either leave the ending tag or add a starting tag. otherwise it probably messes up the page since start and ending tags don't match.Ruben Ryapolov wrote: I changed:
<?php }
if ($this->params->get('client_col_player')){ ?>
<div class="ss-sermondetail-label"></div>
<div class="ss-sermondetail-text ss-sermon-player">
<?php $ret = SermonspeakerHelperSermonspeaker::insertPlayer($this->lnk, $this->row->sermon_time, 1, $this->row->sermon_title, $this->speaker->name); ?>
</div>
To this:
<?php }
if ($this->params->get('client_col_player')){ ?>
<?php $ret = SermonspeakerHelperSermonspeaker::insertPlayer($this->lnk, $this->row->sermon_time, 1, $this->row->sermon_title, $this->speaker->name); ?>
</div>
Please Log in or Create an account to join the conversation.
- Ruben Ryapolov
- Topic Author
- Offline
- Junior Member
- www.LFSwear.com
How did I miss that?! :woohoo:
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
Please Log in or Create an account to join the conversation.