Enrico,
Unfortunately, we don't have an easy option to do this right now. In /media/themes/scsocialstream/default/facebook.php, remove or comment out the following lines around line 57
if (is_array($this->comments))
{
echo '<div class="row-fluid">
<div class="comments preview span12">
<div class="text-center">Comments</div>';
foreach ($this->comments['data'] as $comment)
{
$date = $this->getTimestamp($comment['created_time'], $dateTimeFormat);
echo '<div class="row-fluid">
<div class="span12 comment">
<div>
<span class="from text-left"><img src="https://graph.facebook.com/' . $comment['from']['id'] . '/picture" width="25" /> ' . $comment['from']['name'] . '</span>
<span class="date text-right">' . $date . '</span>
</div>
<div class="message">' . $comment['message'] . '</div>
</div>
</div>';
}
echo '</div>
</div>';
}
Let me know if this fixes your problem. I've added an issue to our tracker to make this an easier option for the next release.
-Melissa