This is a fix to the synopsis issue:
Currently, it is hard-coded to only show the first 250 characters, even though there is an admincp setting to override this.
To fix, open the gars_underscore_class.php file and replace the snip_and_parse function with this version:
PHP Code:
function snip_and_parse(&$text, $readmore = 0)
{
$text = $this->parse_bbcode($this->prep_for_broken_tags(fetch_trimmed_title($text, intval($this->settings['maxsynopsischars']))));
$readmore ? strlen($text) > 240 ? $text . "... <a href='showthread.php?t=$readmore'><strong>More</strong></a>" : "" : "";
return $text;
}
You can adjust the hard-coded 240 if you like, though I chose to leave it on my site because I want all synopses to contain the "read more" link.
I've posted this fix at Geek's request.