Hmmm the script does appear to be working correctly, and the JavaScript array that contains your RSS feeds does contain a description field for each entry: http://www.realestateshortsaleinfo.c...ateheavyweight With that said, the issue most likely is due to how the descriptions in your RSS feed are encoded.
Inside scrollerbridge.php, the relevant function that decodes the descriptions is:
Code:
function slashit($what){ //Encode text for storing in JavaScript array
$newstring=str_replace(''', '\'', $what); //replace those half valid apostrophe entities with actual apostrophes
return rawurlencode($newstring);
}
You may need to edit the above to add additional decoding to get your descriptions to show up. Or if you're not familiar with PHP, consider a script such as gAjax Scroller, which may take care of the issue automatically.
Bookmarks