Edit the forumhome_complete part of the product (via Plugin Manager)
Change:
PHP Code:
DESC LIMIT 5");
to
PHP Code:
DESC LIMIT 10");
Change [high]10[/high] to whatever value you want to display that many results
Now change:
PHP Code:
$thread['title'] = fetch_censored_text(fetch_trimmed_title(unhtmlspecialchars($thread['title']), 22));
to:
PHP Code:
$thread['title'] = fetch_censored_text(fetch_trimmed_title(unhtmlspecialchars($thread['title']), 35));
Change [high]35[/high] to whatever value you want your thread title length to be before it's trimmed
Chris