Hello Troy,
I have updated the file /media/com_easysocial/apps/user/groups.php and at line 560 I have replaced the codes below,
private function formatContent( $discussion )
{
$content = $content = Foundry::string()->parseBBCode( $discussion->content , array( 'code' => true , 'escape' => false ) );
// Remove [file] from contents
$content = $discussion->removeFiles( $content );
return $content;
}
With,
private function formatContent( $discussion )
{
// Reduce length based on the settings
$params = $this->getParams();
$max = 250;
$content = $discussion->content;
if ($max != 0) {
$content = JString::substr($discussion->content, 0, $max) . JText::_('COM_EASYSOCIAL_ELLIPSES');
}
// Remove code blocks
$content = Foundry::string()->parseBBCode( $content , array( 'code' => true , 'escape' => false ) );
// Remove [file] from contents
$content = $discussion->removeFiles( $content );
return $content;
}