MyBB Community Forums

Full Version: How to increase/adjust thread title preview charecters?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
this is a screenshot of my problem...

[Image: thread%20preview%20title%20problem.jpg]

you can see all the unused area in the columns that display the clickable thread title preview.
What is a solutions to show more of the thread title displayed in the preview pages? or is it a modification needed on the tables?


Thank you
This would require a code modification.

Open inc/functions_forumlist.php and look for the following block of code:

if(my_strlen($lastpost_subject) > 25)
{
	$lastpost_subject = my_substr($lastpost_subject, 0, 25) . "...";
}

The limit is hard-coded to 25 characters. To increase the limit, change the two occurrences of 25 to the number of characters you want to display.