Regarding hiding any images within the displayed contents, the easiest way would be to use CSS. When you invoke a RSS feed, such as:
Code:
<script type="text/javascript">
var showbbc=new rssdisplaybox("bbc", "bbcid", "someclass")
showbbc.set_items_shown(10) //show 10 entries from feed
showbbc.start() //Required: start script
</script>
The two calues in red are the ID and CSS class name of the content container. You can use CSS to hide any images inside that container:
Code:
<style type="text/css">
.someclass img{
display:none;
}
</style>
Also, I'm trying to get my box to display a mashup of two different feeds (from two different sources) at the same time, but now I'm not so sure that I can do that.
There's no easy way to do this right now unfortunately. gAjax RSS feed Displayer supports this.
Bookmarks