Hello John,
I am very sorry about this. Currently, EasySocial doesn't have setting to set the limit of comment to be displayed. I am sorry for the inconvenience caused. However, you can customize this file in order to set it: \administrator\components\com_easysocial\tables\comments.php Line: 286 and 300. Look for this block of code:
// Determine if read more is needed.
$readmore = JString::strlen($comment) > 150; // change it here
// 1.2.17 Update
// We truncate to get a short preview content but in actual, we prepare 2 copies of data here.
// Instead of separating the comments into Shorten and Balance, we do Shorten and Full instead.
// Shorten contains first 150 character in raw.
// Full contains the full comment, untruncated and processed.
// The display part switches the shorten into the full content with JS.
// Preview doesn't need to be processed.
// If there's a read more, then we prepare a short preview content
$preview = '';
if ($readmore) {
$preview = JString::substr($comment, 0, 150); // change it here as well
}
If you encounter issue in customizing this, perhaps you can provide us backend access and ftp access so that we can help you put this customization in your site. If you have anymore question, please don't hesitate to ask us.
Hope this will help.
Thanks.