- Posts: 6
- Thank you received: 0
Support for SermonSpeaker 3.x is canceled as it is for Joomla 1.5. I will gladly assist you with minor issues but I will not fix any bugs anymore in this releases.
The fix is to upgrade to SermonSpeaker 4.x, which is better anyway.
The fix is to upgrade to SermonSpeaker 4.x, which is better anyway.
Podcast by Series and podcast styles
05 Jul 2011 20:24 #717
by Cindy
Podcast by Series and podcast styles was created by Cindy
Hello, I am trying to setup our site so that when the RSS feed or podcast link is clicked it will pull up by Series (ie, Series 1 and its mp3s, Series 2 and its mp3s below that etc.). I can't seem to get it to work. It seems to be either all mp3s or none.
Also, in IE9 the style is not the same. There is a missing graphic at the top right and the colors are different. In Firefox, it shows neatly and each mp3 row has a grey background.
Any help you can offer would be appreciated. Thanks
www.plainfieldcs.com/index.php?option=co...monspeaker&view=feed
Also, in IE9 the style is not the same. There is a missing graphic at the top right and the colors are different. In Firefox, it shows neatly and each mp3 row has a grey background.
Any help you can offer would be appreciated. Thanks
www.plainfieldcs.com/index.php?option=co...monspeaker&view=feed
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
05 Jul 2011 20:44 #718
by Thomas Hunziker
Replied by Thomas Hunziker on topic Re: Podcast by Series and podcast styles
How the Feed is displayed depends fully on the browser. The feed itself doesn't contain any styling info.
However which sermons should be listed can be either set in the settings for the module or with the URL parameters. You can filter by categories or series.
The URL parameters are "series_cat", "speaker_cat", "sermon_cat" and "series_id". So if you want only the sermons of the series with the id '1000', then your URL would look like this:
www.plainfieldcs.com/index.php?option=co...=feed&series_id=1000
There is currently no way to automatically generate such a feed link on the series page without editing the code, but it could certainly be done easy by editing the layoutfile, all the needed data is already there.
If you tell me what exactly you want to achieve I could probably guide you so you can edit the files yourself.
However which sermons should be listed can be either set in the settings for the module or with the URL parameters. You can filter by categories or series.
The URL parameters are "series_cat", "speaker_cat", "sermon_cat" and "series_id". So if you want only the sermons of the series with the id '1000', then your URL would look like this:
www.plainfieldcs.com/index.php?option=co...=feed&series_id=1000
There is currently no way to automatically generate such a feed link on the series page without editing the code, but it could certainly be done easy by editing the layoutfile, all the needed data is already there.
If you tell me what exactly you want to achieve I could probably guide you so you can edit the files yourself.
Please Log in or Create an account to join the conversation.
05 Jul 2011 21:17 #719
by Cindy
Replied by Cindy on topic Re: Podcast by Series and podcast styles
Thanks so much for your quick response.
Here is what I am trying to achieve. On this page
plainfieldcs.com/index.php?option=com_co...ory&id=56&Itemid=191
Each of these has its own set of mp3s. I haven't set them up in SermonSpeaker yet...only the Preface. I would like the feed to show each Series and its mp3s below it. In other words
Science & Health Chapter 01 - Prayer
1.mp3
2.mp3
3.mp3
Science & Health Chapter 02 - Atonement & Eucharist
1.mp3
2.mp3
3.mp3
Would like all these to show like this on the feed. Thanks.
Here is what I am trying to achieve. On this page
plainfieldcs.com/index.php?option=com_co...ory&id=56&Itemid=191
Each of these has its own set of mp3s. I haven't set them up in SermonSpeaker yet...only the Preface. I would like the feed to show each Series and its mp3s below it. In other words
Science & Health Chapter 01 - Prayer
1.mp3
2.mp3
3.mp3
Science & Health Chapter 02 - Atonement & Eucharist
1.mp3
2.mp3
3.mp3
Would like all these to show like this on the feed. Thanks.
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
06 Jul 2011 06:03 - 06 Jul 2011 06:05 #721
by Thomas Hunziker
Replied by Thomas Hunziker on topic Re: Podcast by Series and podcast styles
A feed by definition is just a list of episodes. There is no defined ordering or grouping possible. How it will be organized and displayed is fully depending on the feed reader (eg iTunes or the browser).
So it would be possible to create a separate feed for each series, but not a single feed containing the sermons ordered by series.
You could add a feed link on the series list page (one link for each series) or on the single series page. That would mean editing the layout file for those views (or overriding them).
For the series list view that would be
/components/com_sermonspeaker/views/series/tmpl/default.php
and you could add the following lines around #45
between those two lines:
So it would be possible to create a separate feed for each series, but not a single feed containing the sermons ordered by series.
You could add a feed link on the series list page (one link for each series) or on the single series page. That would mean editing the layout file for those views (or overriding them).
For the series list view that would be
/components/com_sermonspeaker/views/series/tmpl/default.php
and you could add the following lines around #45
Code:
<td>
<a href="index.php?option=com_sermonspeaker&view=feed&series_id=<?php echo $row->id; ?>">
<img src="images/M_images/livemarks.png">
</a>
</td>
Code:
</td>
</tr>
Last edit: 06 Jul 2011 06:05 by .
Please Log in or Create an account to join the conversation.
Time to create page: 0.111 seconds