Reporting a problem fix
-
In currently available version (May 17) there is a problem with external RSS. Plugin shows the date, the title (linked to original page) but does not show any description. Just element date and title.
Not really a bug (malfunction) looks more like author forget to add a bit of code to show descriptions from external RSS feeds
So, until its fixed by author, here is what to do:Open file ticker.php in editor (like Notepad++) go to line 142 and change that line to:
<li><span class="tickerDate"><?php $pubdate = substr($item['pubdate'], 4, 12); echo $pubdate; ?></span> - <span class="tickerLink"><a href="<?php echo $item['link']; ?>"><?php echo $item['title']; ?>: <?php echo $item['description']; ?></a></b></span></li>
What i did was add
<?php echo $item['description']; ?>
just before the close. If you add AFTER result is same but description phrase is not a live click-able link. Your choice…Cheers!
- The topic ‘Reporting a problem fix’ is closed to new replies.