Cyberdave Posted December 14, 2010 Share Posted December 14, 2010 How can I edit this code to have images appear in it? <div id="rssSummaryList<?php echo intval($bID)?>" class="rssSummaryList"> <?php if( strlen($title)>0 ){ ?> <div class="rssSummaryListTitle"><?php echo $title?></div> <?php } ?> <?php $rssObj=$controller; $textHelper = Loader::helper("text"); if (!$dateFormat) { $dateFormat = t('jS F, Y'); } if( strlen($errorMsg)>0 ){ echo $errorMsg; }else{ foreach($posts as $itemNumber=>$item) { if( intval($itemNumber) >= intval($rssObj->itemsToDisplay) ) break; ?> <div class="rssItem"> <div class="rssItemTitle"> <a href="<?php echo $item->get_permalink(); ?>" <?php if($rssObj->launchInNewWindow) echo 'target="_blank"' ?> > <?php echo substr ($item->get_title(), 0, 100); ?> </a> </div> <div class="rssItemDate"><?php echo $item->get_date($dateFormat); ?></div> <div class="rssItemSummary"> <?php if( $rssObj->showSummary ){ echo $item->get_description(); } ?> <a href="<?php echo $item->get_permalink(); ?>" <?php if($rssObj->launchInNewWindow) echo 'target="_blank"' ?> >Read more</a> </div> </div> <?php } } ?> </div> Quote Link to comment Share on other sites More sharing options...
Adam Posted December 14, 2010 Share Posted December 14, 2010 You mean the channel/image? Items within a feed can't have an image. Is this an RSS to HTML processor of some kind? Quote Link to comment Share on other sites More sharing options...
Cyberdave Posted December 14, 2010 Author Share Posted December 14, 2010 Yes, I guess it is. It's a block for Concrete5. Quote Link to comment Share on other sites More sharing options...
Adam Posted December 14, 2010 Share Posted December 14, 2010 So are you referring to the channel/image? i.e. <channel> <title>...</title> <description>...</description> <image> <url>...</url> <link>...</link> </image> (...) Quote Link to comment Share on other sites More sharing options...
Cyberdave Posted December 14, 2010 Author Share Posted December 14, 2010 No, I have added the images manually in my WYSIWYG editor. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.