MyBB Community Forums

Full Version: custom portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I moved the latest threads to the right column, and the width is around 700pixels. So, it's too large with current setting. It seems *each latest thread* shows only around 25 characters of its subject. So, my questions are
1. how to increase the length of subject?
2. is it possible to give some first lines of content in each thread?

Thanks.
In portal.php, find

if(my_strlen($thread['subject']) > 25)
		{
			$thread['subject'] = my_substr($thread['subject'], 0, 25) . "...";
		}

Replace the two 25 numbers to something larger.

Do you mean show the first line of the thread underneath the title? You might need to have a plugin do this - it's not quite that easy to do...