Try the below attached .js file. It does two things:
1) Removes the square brackets from the labels: [label] is shown just as label
2) When the display option is set to "description" instead of "snippet", it displays the first 200 characters of the full description (after stripping it of any HTML tags). The display option is set in the following line inside your initialization code:
Code:
"
"
newsfeed.displayoptions("datetime description") //show the specified additional fields
newsfeed.setentrycontainer("p") //Display each entry as a paragraph
newsfeed.filterfeed(8, "date") //Show 8 entries, sort by date
newsfeed.init() //Always call this last
To change the 200 character limit to something else, inside the .js file, you'd change 200 below to another number:
Code:
itemdescription=itemdescription.replace(re, "").substring(0, 200)
if (itemdescription.length==200)
itemdescription+='...'
Bookmarks