<div class="rssItemSummary"> <?php if( $rssObj->showSummary ){ echo $textHelper->shortText( strip_tags($item->get_description()) ); } ?> </div>
<div class="rssItemSummary"> <?php $htmlrss = $item->get_description(); if( $rssObj->showSummary ){ echo $htmlrss; } ?> </div>
<div class="rssItemSummary"> We have been working hard to update our sermon database. A large <br> amount of messages from the last couple years are now available on our <br> website! If you have an iPod, you can subscribe to the podcast <br> through the link to iTunes. You can also simply listen to the sermons <br> on the website, or download them as .mp3 files. <a href="http://www.allnationsbiblefellowship.org/sermons" rel="nofollow" target="_blank">[link]</a> </div>
<div class="rssItemSummary"> <?php $htmlrss = $item->get_description(); $htmlrss = str_replace("<br>", " ", $htmlrss); if( $rssObj->showSummary ){ echo $htmlrss; } ?> </div>
/concrete/blocks/rss_displayer
to:
/blocks/rss_displayer
and change this:
to this:
Obviously you need to put in the url of your feed above. If you don't have one, take a look at this page where Franz suggests how to add one:
http://www.concrete5.org/community/forums/customizing_c5/how_to_cre...
Hope that helps